-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
Zr data subsets all have different number of cols #75
Comments
Rm from manuscript, this is a pipeline job of low priority |
Current state: library(ManyEcoEvo)
#> Loading required package: rmarkdown
#> Loading required package: bookdown
#> Registered S3 method overwritten by 'parsnip':
#> method from
#> print.nullmodel vegan
#> Registered S3 method overwritten by 'lava':
#> method from
#> print.estimate EnvStats
library(purrr)
library(dplyr)
#>
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#>
#> filter, lag
#> The following objects are masked from 'package:base':
#>
#> intersect, setdiff, setequal, union
ManyEcoEvo::ManyEcoEvo_results %>%
select(ends_with("set"), "effects_analysis") %>%
rowwise() %>%
mutate(ncols = ncol(effects_analysis), .keep = "unused") %>%
knitr::kable()
Created on 2024-09-10 with reprex v2.1.0 |
so the publish ability subsetting is resulting in this discrepancy. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
effects_analysis
tbl's have the same columnsThe text was updated successfully, but these errors were encountered: