We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to have a list as element of the result? This does not work for me:
library(fxtract) iris$id = paste0(iris$Sepal.Length, iris$Species) aggregate = function(data) { a = 10 # browser() return(c(coef = list(a = list(10, "bla", TRUE), b = 100, c = 1000))) } xtractor = Xtractor$new("iris_test") xtractor$add_data(iris, group_by = "id") xtractor$add_feature(aggregate_iters) xtractor$calc_features() xtractor$results unlink("fxtract_files", recursive = TRUE)
But this may be disabled by dplyr...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is it possible to have a list as element of the result? This does not work for me:
But this may be disabled by dplyr...
The text was updated successfully, but these errors were encountered: