View source: R/RunCharacterization.R
saveCharacterizationSettings | R Documentation |
This function converts the settings into a json object and saves it
saveCharacterizationSettings(settings, fileName)
settings |
An object of class characterizationSettings created using |
fileName |
The location to save the json settings |
Input the characterization settings and output a json file to a file named 'characterizationSettings.json' inside the saveDirectory
Returns the location of the directory containing the json settings
Other LargeScale:
createCharacterizationSettings()
,
loadCharacterizationSettings()
,
runCharacterizationAnalyses()
drSet <- createDechallengeRechallengeSettings(
targetIds = c(1,2),
outcomeIds = 3
)
cSet <- createCharacterizationSettings(
dechallengeRechallengeSettings = drSet
)
saveCharacterizationSettings(
settings = cSet,
fileName = file.path(tempdir(), 'cSet.json')
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.