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
# Check if there are NAs in the time or id variable
# (and drop them but warn the user about it)
if (sum(is.na(dat[[id]])) > 0) {
warning(
"There is a missing value in your id variable. The missing value is automatically deleted."
)
dat <- dat[!is.na(get(id)), col_names, with = FALSE]
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: