The R Project SVN R

Rev

Rev 40012 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 40012 Rev 42764
Line 1... Line 1...
1
#### Simple integrity tests of the system datasets
1
#### Simple integrity tests of the system datasets
2
 
2
 
-
 
3
options(useFancyQuotes=FALSE)
3
env <- as.environment("package:datasets")
4
env <- as.environment("package:datasets")
4
d <- ls(env) # don't want .names
5
d <- ls(env) # don't want .names
5
for(f in d) {
6
for(f in d) {
6
    cat("\n** structure of dataset ", f, "\n", sep="")
7
    cat("\n** structure of dataset ", f, "\n", sep="")
7
    str(get(f, envir=env, inherits=FALSE))
8
    str(get(f, envir=env, inherits=FALSE))