-
Notifications
You must be signed in to change notification settings - Fork 1
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
Convert data from answercode to answer #21
Comments
In the future, if you want to do some experimentation, you can totally do that in a branch on this repo! That'll make it easier to transplant your code into the package 😉 |
Is this vital for our first version? I would maybe move this to the v0.1 milestone |
The tibble is content wise very unusable without :-/ |
That is a pickle, alright, lets keep it in this milestone. So perhaps this should have priority above the quality of life improvements on authentication? Do you want to tackle this? Or do you want me to have a look at it? |
Yes please
I can try but will probably loose a lot of time |
A note, the reason the fieldlabels have changed to snakecase is because I standardize them using I personally don't like spaces or other weird characters in my column names, which is why I get rid of them early on. |
For |
Currently fields of
fieldtype == "select" or "radio"
(maybe also others) contain a code related to their answer in the output ofget_records
. It would be usefull to have the actual answers instead.The actual answers can be found in the "options" column of
get_fields
"fields" slot.There is no data column present to link the answer with the answer code.
Pay attention: the content of the column "fieldlabel" is not snakecase while the column names from
get_records
are!Pay attention: some select/radio columns from
get_records
are of class "list" these merit a different approach!Some testing from myself:
https://github.com/inbo/aspbo/blob/ae995deb42686abc644d6e02f290f78c4204d1d8/src/get_data_from_iAsset.Rmd#L27-L49
The text was updated successfully, but these errors were encountered: