Last active
January 4, 2018 09:59
-
-
Save pmeyerdk/9013689cdcb6fd9fe091ef7e440fe1d7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library("RSiteCatalyst") | |
library("dplyr") | |
SCAuth("[email protected]:xxx", "xxx") | |
reportSuites <- GetReportSuites() | |
evar <- GetEvars(reportSuites$rsid) #%>% | |
# reportSuite <- reportSuites$rsid | |
props <- GetProps(reportSuites$rsid) | |
for (suite in reportSuites$rsid) { | |
print(paste(suite)) # Prints one name at a time ;-) | |
suite <- GetEvars(suite) # OVerwrites the same dataframe "suite" once per report suite | |
# It would be nice to have above dataframe named differently per looped report suite. | |
# This to get one dataframe with evars per report suite, for export to Excel later on | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment