| CheckCols | R Documentation |
Checks to ensure column names are specified
CheckCols(dat, xcol, ycol, idcol, groupcol = NULL)
dat |
Dataframe |
xcol |
Name of x column |
ycol |
Name of y column |
idcol |
Name of id column |
groupcol |
Name of group column |
Check column names
Dataframe
Brent Kaplan bkaplan.ku@gmail.com
dat <- data.frame(price = 1:5, quantity = c(10, 8, 5, 2, 0), subj = rep(1, 5))
CheckCols(dat, xcol = "price", ycol = "quantity", idcol = "subj")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.