We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
tbl_ts
new_epi_df
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
devtools::load_all("/home/fullname/files/tooling/epiprocess/", export_all=FALSE) #> ℹ Loading epiprocess original_edf = new_epi_df(tibble::tibble(geo_value=1, time_value=1, age_value=1, value=1), additional_metadata=list(other_keys="age_value")) corresponding_tsibble = tsibble::as_tsibble(original_edf) tsibble::key(corresponding_tsibble) #> [[1]] #> geo_value #> #> [[2]] #> age_value recovered_edf = as_epi_df(corresponding_tsibble) attr(recovered_edf, "metadata")$other_keys #> [1] "age_value" not_recovered_edf = new_epi_df(corresponding_tsibble) attr(not_recovered_edf, "metadata")$other_keys #> NULL
Created on 2022-08-25 by the reprex package (v2.0.1)
I think we'd prefer one of the following:
x
tsibble::key
geo_value
as_epi_df
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Created on 2022-08-25 by the reprex package (v2.0.1)
I think we'd prefer one of the following:
x
is atbl_ts
.x
is atbl_ts
that has atsibble::key
including anything other thangeo_value
.new_epi_df
behave the same way asas_epi_df
when given atbl_ts
.The text was updated successfully, but these errors were encountered: