sfirke / Rmonkey

A Survey Monkey R Client
http://cloud.r-project.org/package=Rmonkey
0 stars 1 forks source link

subquestion_id breaking the survey_responses() function #14

Open joshyazman opened 6 years ago

joshyazman commented 6 years ago

I'm getting the following error when I try to use the survey_responses() function to return individual level responses. Is there a subquestion_id I should know about and don't? If so where can I find it?

s <- survey_list(per_page = 200)

survey <- find_survey_by_name('Survey Name', s)

survey_responses(survey)

Error: subquestion_id = id must be a symbol or a string, not formula

sfirke commented 6 years ago

holy cow I did not think anyone was using my fork of this package. I stalled halfway through updating it and would not describe it as functional or recommend using it. Sean O'Fahey's fork might be a better bet: https://github.com/seanofahey/Rmonkey Though I still find it not functional enough for my needs which is why I was working on my own fork.

Each time that I export a SurveyMonkey .csv file, I lament that I haven't found time to work on this 😢 Maybe in 2018? I have other to-dos first unfortunately.

I'll leave this issue open as a motivator and for reference in case I come back to address this error message. May I look back on this issue fondly some day, having closed it! 🔮

TheTS commented 6 years ago

This is probably a related error

> test_survey <- find_survey_by_name("test", sl)
> dat <- survey_responses(test_survey)
Error: `id` contains unknown variables

EDIT: Yeah seems to work fine on the seanofahey fork, thanks.