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
The helper function ifnullNA() doesn't work for date class. It will convert date class into numeric vector.
start_date = Sys.Date()-2 end_date = Sys.Date()-1
args_tbl <- tibble(start=ifnullNA(start_date), end=ifnullNA(end_date), sentiments=ifnullNA(sentiments)) %>% remove_na_cols() args_tbl A tibble: 1 x 3 start end sentiments 1 18598 18599 positive+negative+neutral+mixed
args_tbl <- tibble(start=start_date, end=end_date, sentiments=ifnullNA(sentiments)) %>% remove_na_cols() args_tbl A tibble: 1 x 3 start end sentiments 1 2020-12-02 2020-12-03 positive+negative+neutral+mixed
The text was updated successfully, but these errors were encountered:
hi @anssonliang can you download the newest version and try again? I think I've fixed it now
Sorry, something went wrong.
randallhelms
No branches or pull requests
The helper function ifnullNA() doesn't work for date class. It will convert date class into numeric vector.
start_date = Sys.Date()-2
end_date = Sys.Date()-1
The text was updated successfully, but these errors were encountered: