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
I noticed a potential namespace conflict with the summarise function. The code snippet below highlights where the conflict occurs: abundance_df_summarized = abundance_df %>% mutate(keep = as.logical(keep)) %>% group_by(group_id, celltype_id) %>% summarise(samples_present = sum(keep))
To improve compatibility and avoid namespace conflicts, I suggest explicitly adding the dplyr namespace in front of summarise
The text was updated successfully, but these errors were encountered:
I noticed a potential namespace conflict with the
summarise
function. The code snippet below highlights where the conflict occurs:abundance_df_summarized = abundance_df %>% mutate(keep = as.logical(keep)) %>% group_by(group_id, celltype_id) %>% summarise(samples_present = sum(keep))
To improve compatibility and avoid namespace conflicts, I suggest explicitly adding the
dplyr
namespace in front ofsummarise
The text was updated successfully, but these errors were encountered: