I'm running a particular piece of code, as below:
library(limer)
library(dplyr)
library(reshape2)
library(tidyverse)
options(lime_api= "x")
options(lime_username = 'y')
options(lime_password = 'z')
get_session_key()
mydata <- get_responses(iSurveyID=313212, sLanguageCode= 'en', sResponseType='short')
My other colleagues can run this and produce a data frame with various columns and rows, but somehow, despite having the same version of R (3.3.3) as them, I'm left with a single variable, such as:
2,2018-08-06 10:45:53,11,en,2018-08-06 10:45:40
What's going on? Help would be greatly appreciated!