quickstart {cdparcoord}R Documentation

cdparcoord: Quick start

Description

Quick introduction to the package.

Examples

   # programmer/engineer info from 2000 Census
   data(prgeng)
   # select some columns of interest
   pe <- prgeng[,c(1,3,5,7:9)]
   # remove some extreme values
   pe25 <- pe[pe$wageinc < 250000,]
   # some numeric variables are really factors
   pe25 <- makeFactor(pe25,c('educ','occ','sex'))
   # convert the continuous variables to discrete
   pe25disc <- discretize(pe25,nlevels=5)
   ## Not run: 
      # display
      discparcoord(pe25disc,k=150)
      # then possibly brush, etc. 
   
## End(Not run)

[Package cdparcoord version 1.0.1 Index]