vascr_combine: Combine ECIS data frames end to end

View source: R/vascr_combine.R

vascr_combineR Documentation

Combine ECIS data frames end to end

Description

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

Usage

vascr_combine(..., resample = FALSE)

Arguments

...

List of data frames to be combined

resample

Automatically try and re sample the data set. Default is FALSE

Value

A single data frame containing all the data imported, automatically incremented by experiment

Examples

#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)



JamesHucklesby/vascr documentation built on July 16, 2025, 8:16 p.m.