Learn R Programming

sfsmisc (version 1.0-29)

Deprecated: Deprecated 'sfsmisc' Functions

Description

These functions are provided for compatibility with older versions of the sfsmisc package only, and may be defunct as soon as of the next release.

Usage

p.pllines(x,y,group,lty=c(1,3,2,4),...)

list2mat(x, check = TRUE)

Arguments

x,y
panel function (or plot or general) arguments: numeric vectors of same length.
group
grouping vector of same length as x or y.
lty
line types to use for the groups (recycled).
...
further arguments passed to (plot) methods.
check
logical specifiying if it should be checked that list components have same length.

Details

hist.bxp is deprecated in favor of histBxp because it looked too much like an S3 method to the CRAN checks.

p.pllines is deprecated because basic Rgraphics (but not S-PLUS) provide its functionality directly: Use plot(x,y, lty = group, type = 'l', ...).

list2mat(x) is usually the same as sapply(x, c) (where the latter does not construct column names where x has no names).