When I import the library timeSeries I get (at least) the variable USDCHF imported too.
I would like to delete it, but I cannot. As you can see below. Clearly I am doing something wrong. What is it? > library(timeSeries) Loading required package: timeDate > class(USDCHF) [1] "timeSeries" attr(,"package") [1] "timeSeries" > rm(list=c("USDCHF")) Warning message: In rm(list = c("USDCHF")) : object 'USDCHF' not found > rm(USDCHF) Warning message: In rm(USDCHF) : object 'USDCHF' not found > class(USDCHF) [1] "timeSeries" attr(,"package") [1] "timeSeries" > I can assign to it... > USDCHF<-NULL > class(USDCHF) [1] "NULL" > get("USDCHF") NULL > Worik [[alternative HTML version deleted]] ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.