View source: R/RunCharacterization.R
loadCharacterizationSettings | R Documentation |
This function converts the json file back into an R object
loadCharacterizationSettings(fileName)
fileName |
The location of the the json settings |
Input the directory containing the 'characterizationSettings.json' file and load the settings into R
Returns the json settings as an R object
Other LargeScale:
createCharacterizationSettings()
,
runCharacterizationAnalyses()
,
saveCharacterizationSettings()
# example code
setPath <- file.path(tempdir(), 'charSet.json')
drSet <- createDechallengeRechallengeSettings(
targetIds = c(1,2),
outcomeIds = 3
)
cSet <- createCharacterizationSettings(
dechallengeRechallengeSettings = drSet
)
saveCharacterizationSettings(
settings = cSet,
fileName = setPath
)
setting <- loadCharacterizationSettings(setPath)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.