View source: R/vascr_combine.R
vascr_combine | R Documentation |
This function will combine ECIS data sets end to end. Preferential to use over a simple rbind command as it runs additional checks to ensure that data points are correctly generated
vascr_combine(..., resample = FALSE)
... |
List of data frames to be combined |
resample |
Automatically try and re sample the data set. Default is FALSE |
A single data frame containing all the data imported, automatically incremented by experiment
#Make three fake experiments worth of data
experiment1.df = vascr_subset(growth.df, experiment = "1")
experiment2.df = vascr_subset(growth.df, experiment = "2")
experiment3.df = vascr_subset(growth.df, experiment = "3")
data = vascr_combine(experiment1.df, experiment2.df, experiment3.df)
head(data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.