reactibble icon indicating copy to clipboard operation
reactibble copied to clipboard

Joins reactibble function doesn't work

Open brianmsm opened this issue 3 years ago • 0 comments

I don't quite understand why it doesn't work

library(dplyr)
library(reactibble)

full_join.reactibble(
  as_reactibble(iris) %>% 
    select(Species, Sepal.Length),
  as_reactibble(iris) %>% 
    select(Species, Sepal.Width),
  by = "Species"
)
#> Error in NextMethod(): no se especificó la función genérica

Created on 2021-02-25 by the reprex package (v1.0.0)

brianmsm avatar Feb 25 '21 23:02 brianmsm