We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This check fails for my dataset:
travelSurveyTools/R/hts_prep_variable.R
Lines 93 to 102 in bf48868
The check should not look at the length of the id columns, but rather that each table in hts_data has an id in id_cols. Something like:
missing_ids = lapply(hts_data, function(x) length(names(x)[names(x) %in% id_cols])==0) any(unlist(missing_ids)) missing_wts = lapply(hts_data, function(x) length(names(x)[names(x) %in% wt_cols])==0) any(unlist(missing_wts ))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This check fails for my dataset:
travelSurveyTools/R/hts_prep_variable.R
Lines 93 to 102 in bf48868
The check should not look at the length of the id columns, but rather that each table in hts_data has an id in id_cols.
Something like:
The text was updated successfully, but these errors were encountered: