Description Usage Arguments Details Value Examples
View source: R/CellSimulation.R
Simulates Cell Model
1 2 | inSilicoCellModel(initialNum, runTime, density,
modelType = "DrasdoHohme", ...)
|
initialNum |
how many cells initially |
runTime |
how long the simulation runs in real cellular time (hours) |
density |
initial density of cell population |
modelType |
the name of the cell-based model to use |
... |
model specific parameters (depends on modelType) |
This function provides a centralized R interface to run c++ code for cell-based models implemented in this package. Standard parameters, as well as model-specific parameters, are passed in to this function along with a model name. This function then runs the model and returns a CellModel object containing all of the information from the model. This object can then be accessed with various functions designed to interact with the class. To see a list of available functions, there is a show() command implemented for CellModel objects.
A CellModel containing all info from the model run
1 | inSilicoCellModel(initialNum=1, runTime=8, density=0.1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.