~ubuntu-branches/debian/jessie/rkward/jessie

« back to all changes in this revision

Viewing changes to tests/item_response_theory/plot_RSM.rkcommands.R

  • Committer: Package Import Robot
  • Author(s): Thomas Friedrichsmeier
  • Date: 2012-10-24 15:30:00 UTC
  • mfrom: (1.1.19)
  • Revision ID: package-import@ubuntu.com-20121024153000-tbipm23vx4j8mzzr
Tags: 0.6.0-1
* new upstream release
* remove support for building on Ubuntu hardy
* more accurate copyright file
  closes: #689982
* bump standards version to 3.9.4 (no changes needed)
* Add Vcs-Browser and Vcs-Svn fields

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
local({
2
2
## Prepare
3
3
require(eRm)
4
 
## Compute
5
4
## Print result
6
5
rk.header("Rating scale model plot")
7
6
 
8
7
rk.graph.on()
9
 
try(plotICC(estimates.rsm, item.subset=c(1:3), mplot=TRUE, ask=FALSE))
 
8
try({
 
9
        plotICC(estimates.rsm, item.subset=c(1:3), mplot=TRUE, ask=FALSE)
 
10
})
10
11
rk.graph.off()
11
12
})