# NOT RUN {
# (1) import and check of continuous anchoring data
# (an example with two apical endpoints of an example given in the package (see ?Scenedesmus))
#
datafilename <- system.file("extdata", "apical_anchoring.txt", package = "DRomics")
o <- continuousanchoringdata(datafilename, check = TRUE)
print(o)
# }
# NOT RUN {
plot(o)
# }
# NOT RUN {
# If you want to use your own data set just replace datafilename,
# the first argument of continuousanchoringdata(),
# by the name of your data file (e.g. "mydata.txt")
#
# You should take care that the field separator of this data file is one
# of the default field separators recognised by the read.table() function
# when it is used with its default field separator (sep argument)
# Tabs are recommended.
# Use of an R object of class data.frame
# on the same example (see ?Scenedesmus for details)
data(Scenedesmus_apical)
o <- continuousanchoringdata(Scenedesmus_apical)
print(o)
# }
# NOT RUN {
plot(o)
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab