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
As part of automated testing, the following errors were found (some of these are because of function overrides due to the order in which packages were loaded in my environment, but this will occur for other users as well):
Lines: 45; 48;51; 54-56; 87
return NULL
Lines: 87-90; 92-94; 103
return "... $ operator is invalid for atomic vectors".
To fix this, remove "[[1]]"
Line 145
returns "Error: by must be supplied when x and y have no common variables."
This is because the object created on line 141 ('my_data_summed') has a single column and a single value. To fix this, update line 143 to read "dplyr::summarize(value = sum(value, na.rm = FALSE))"
Line 175
returns ""unable to find an inherited method for function ‘select’ for signature ‘"data.frame"’
Fix by updating line 177 to "dplyr::select(event_id, taxon_id, value)"
The text was updated successfully, but these errors were encountered:
As part of automated testing, the following errors were found (some of these are because of function overrides due to the order in which packages were loaded in my environment, but this will occur for other users as well):
Lines: 45; 48;51; 54-56; 87
Lines: 87-90; 92-94; 103
Line 145
by
must be supplied whenx
andy
have no common variables."Line 175
The text was updated successfully, but these errors were encountered: