Access Data Of series Objects

DESCRIPTION:

Access the data slot of series objects.

USAGE:

seriesData( object ) 

REQUIRED ARGUMENTS:

object
object to find data of.

VALUE:

the data slot of object.

DETAILS:

This function can also be used on the left side of an assignment.

SEE ALSO:

, class.

EXAMPLES:

x <- signalSeries(pos=1:10, data=data.frame(a = 1:10)) 
seriesData(x) 
seriesData(x)[,"b"] <- 11:20