You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Returns a data frame where one column is a list containing a numeric vectorfoo<-function(x) {
res<-data.frame(a=1, b=2)
res$c<-list(c(5,6,7))
res
}
foo()
# Not grouped: OKdata.frame(g=1) %>% do(foo(.))
# Grouped: crashes Rdata.frame(g=1) %>% group_by(g) %>% do(foo(.))
This is needed for compute_boxplot in ggvis.
The text was updated successfully, but these errors were encountered:
Example:
This is needed for
compute_boxplot
in ggvis.The text was updated successfully, but these errors were encountered: