Skip to content
New issue

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

Add support for date_time fields #14

Closed
pbchase opened this issue Jan 30, 2025 · 1 comment
Closed

Add support for date_time fields #14

pbchase opened this issue Jan 30, 2025 · 1 comment
Assignees

Comments

@pbchase
Copy link
Contributor

pbchase commented Jan 30, 2025

Add support for datetime fields in get_long_text_fields.R and get_long_text_field_values.R

get_long_text_fields.R

Use tvt_na as a template to add an internal function, tvt_datetime. It should filter for text_validation_types with the pattern "^ datetime.*". Set

dplyr::mutate(mean = "lubridate::now()", sd = 3600*24)

I expect this use of mean as a character string with a function call in it will create some chaos in get_long_text_fields.R and get_long_text_field_values.R I am open to suggestions on how to circumvent this. Perhaps two novel columns: origin_function and bias

After dplyr::mutate(tvt = dplyr::case_when( add a case to set tvt to tvt_datetime for the supported pattern.

get_long_text_field_values.R

Use tvt_na as a template to add an internal function, tvt_datetime. Filter for this TVT. Set value something like this:

      dplyr::mutate(value = as.POSIXct(rnorm(length(.data$field_name), mean=as.POSIXct(do.call(.data$mean)), sd=.data$sd))

Revise

to support this new tvt_type.

@pbchase
Copy link
Contributor Author

pbchase commented Mar 5, 2025

Addressed by PR #26

@pbchase pbchase closed this as completed Mar 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants