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
All named objects in lTags must have length == 1 because it is added as a column to dfSummary
Possible solutions:
Catch and throw an error
Create a vector of length 1 using paste(vector, collapse = ", ")
Probably a combination of both will be needed, to ensure data.frames() or other objects aren't attempted to be passed through in lTags.
Additional Comments
Below error should be caught or reconciled:
IE_Assess(dfInput, lTags=list("siteID"=1:10))
# this runs but fails with message:Errorin`bind_cols()`:!Can't recycle `..1` (size 175) to match `siteID` (size 10).
The text was updated successfully, but these errors were encountered:
QC Details
All named objects in
lTags
must havelength == 1
because it is added as a column todfSummary
Possible solutions:
paste(vector, collapse = ", ")
data.frames()
or other objects aren't attempted to be passed through inlTags
.Additional Comments
Below error should be caught or reconciled:
The text was updated successfully, but these errors were encountered: