vascr_exclude: Exclude erronious data from an ECIS dataframe

vascr_excludeR Documentation

Exclude erronious data from an ECIS dataframe

Description

Exclude erronious data from an ECIS dataframe

Usage

vascr_exclude(
  data.df,
  samples = FALSE,
  wells = FALSE,
  experiments = FALSE,
  times = FALSE,
  values = FALSE,
  vars = FALSE,
  vals = FALSE,
  vs = FALSE
)

Arguments

data.df

The source dataset

samples

The sample(s) to exclude

wells

The well(s) to exclude

experiments

The experiment(s) to exclude

times

The time(s) to exclude

values

The value(s) to exclude

vars

The isolated variables to exclude

vals

The isolated values to exclude

vs

The isolated variables-unit pairs to exclude

Value

The altered dataset

Examples


#unique(growth.df$Sample)
#excludedgrowth.df = vascr_exclude(growth.df, samples = c("35,000 cells", "0 cells"))
#unique(excludedgrowth.df$Sample)

#unique(growth.df$Well)
#excludedgrowth.df = vascr_exclude(growth.df, wells = c("A1", "B1", "C1"))
#unique(excludedgrowth.df$Well)

#unique(growth.df$Experiment)
#excludedgrowth.df = vascr_exclude(growth.df, experiment = c(1,2))
#unique(excludedgrowth.df$Experiment)


JamesHucklesby/vascr documentation built on March 23, 2024, 10:20 a.m.