similar to: Capturing error messages while running R through an external program

Displaying 20 results from an estimated 20000 matches similar to: "Capturing error messages while running R through an external program"

2012 Nov 21
4
Function storing error messages in 32 bit R-2.15.2 version
I am using 32 bit R - 2.15.2 version and working on package ltm. The program does not give me any warning message when I run tpm command for a dataset. If run tpm command for the same dataset in 64-bit R 2.15.1 version, I get the warning message shown below. Can someone suggest why is no warning message being generated by 32-bit R? Or is it being generated but not getting printed? Which function
2010 Jun 26
1
Passing the parameter (file name) to png()
I am fitting 3 parameter model to my response matrix and want to generate item characterstic curve. I want to specify file name to save item characterstic curve by passing it as external parameter to the R batch script. The following is the code I have written for this. *R Script:* library(ltm) cmd_args = commandArgs(); for (arg in cmd_args) cat(" ", arg, "\n",
2007 May 08
0
package ltm -- version 0.8-0
Dear R-users, I'd like to announce the release of the new version of package `ltm' (i.e., ltm_0.8-0 soon available from CRAN) for Item Response Theory analyses. This package provides a flexible framework for analyzing dichotomous and polytomous data under IRT, including the Rasch model, the Two-Parameter Logistic model, Birnbaum's Three-Parameter model, the Latent Trait model
2007 May 08
0
package ltm -- version 0.8-0
Dear R-users, I'd like to announce the release of the new version of package `ltm' (i.e., ltm_0.8-0 soon available from CRAN) for Item Response Theory analyses. This package provides a flexible framework for analyzing dichotomous and polytomous data under IRT, including the Rasch model, the Two-Parameter Logistic model, Birnbaum's Three-Parameter model, the Latent Trait model
2008 Feb 28
0
problem with the ltm package - 3PL model
Hi Xavier, the reason you observe this feature is that in the 'constraint' argument you should specify the values under the additive parameterization, i.e., when in the second column of the matrix supplied in 'constraint' you specify 2, then you need to provide the easiness parameters (not the difficulty parameters) in the third column. Check the Details section of ?tpm() and
2007 Sep 05
0
New R package plink for separate calibration IRT linking
The first version of the package plink has been uploaded to CRAN. plink is a package for conducting unidimensional IRT scaling and chain linking for multiple groups for single-format or mixed-format common items. The package supports eight IRT models and four calibration methods. Dichotomous Models: 1PL, 2PL, 3PL Polytomous Models: -Graded response model -Partial credit model -Generalized
2007 Sep 05
0
New R package plink for separate calibration IRT linking
The first version of the package plink has been uploaded to CRAN. plink is a package for conducting unidimensional IRT scaling and chain linking for multiple groups for single-format or mixed-format common items. The package supports eight IRT models and four calibration methods. Dichotomous Models: 1PL, 2PL, 3PL Polytomous Models: -Graded response model -Partial credit model -Generalized
2006 Feb 20
1
Test Vectors Needed to Test Ogg Vorbis Encoder
Hello to All Members of this Group, Can I get the Test Vectors in .wav format for different sampling rates in order to Test the Ogg Vorbis Encoder Code ? If possible Forward the Link where I can get effective testvectors to Test the Encoder. Please Reply As soon as possible . Thanks & Regards , Maulik Desai Embedded Engineer - Embedded Division eInfochips Ltd. Work:
2011 Dec 17
0
R package(s) for IRT scoring?
Hello forum, I have developed an IRT model for a set of items on a large reference sample. I now want to use the IRT parameters that were estimated in the reference sample to score new individuals, one at a time. What R package(s) would allow me to do this? Also, several covariates were associated with item thresholds in the reference sample, so I was wondering if any programs can take
2009 Apr 20
0
Major revision of plink for separate calibration IRT-based linking
An updated version of the package plink has been uploaded to CRAN. This is a major revision that now includes multidimensional models and methods. plink is a package for conducting unidimensional and multidimensional IRT-based test linking using separate calibration methods for multiple groups for single-format or mixed-format common items. The package supports sixteen IRT models and eleven
2009 Apr 20
0
Major revision of plink for separate calibration IRT-based linking
An updated version of the package plink has been uploaded to CRAN. This is a major revision that now includes multidimensional models and methods. plink is a package for conducting unidimensional and multidimensional IRT-based test linking using separate calibration methods for multiple groups for single-format or mixed-format common items. The package supports sixteen IRT models and eleven
2010 Nov 03
3
optim works on command-line but not inside a function
Dear all, I am trying to optimize a logistic function using optim, inside the following functions: #Estimating a and b from thetas and outcomes by ML IRT.estimate.abFromThetaX <- function(t, X, inits, lw=c(-Inf,-Inf), up=rep(Inf,2)){ optRes <- optim(inits, method="L-BFGS-B", fn=IRT.llZetaLambdaCorrNan, gr=IRT.gradZL, lower=lw, upper=up, t=t, X=X)
2011 Feb 10
1
factor.scores
The function factor.scores is used with package ltm and others to estimate IRT type scores for various models. It inherits objects of class grm, gpcm and a few others. What I would like to do is to use the factor.scores function, but feed it my own item parameters (from a bifactor model where the 2PL parameters are adjusted for the bifactor structure). Does anybody have an idea of how this might
2019 Feb 22
0
[PATCH] tpm: Add driver for TPM over virtio
On Thu, Feb 21, 2019 at 06:14:02PM -0800, David Tolnay wrote: > Add a config TCG_VIRTIO_VTPM which enables a driver providing the guest > kernel side of TPM over virtio. > > Use case: TPM support is needed for performing trusted work from within > a virtual machine launched by Chrome OS. > > Tested inside crosvm, the Chrome OS virtual machine monitor. Crosvm's >
2012 May 22
1
Capturing signals from within external libs
I have a continuous loop running in an external library that I am calling from C (R API). This loop is processing events in real time with the possibility of significant lag between events. When processing an event, I can make use of R_CheckUserInterrupt, but while the external library code is waiting on a new event, I don't have an opportunity to call this - my entry points are only on
2011 Apr 18
0
error message while running IRT model
I have been struggling with the same problem for the past few hours and am desperately in need of some help. The code I am running is as follows: ## opening a data set on the desktop setwd("C:/Users/haillie/Desktop") UN2010<- read.csv("UN2010.csv",header=TRUE) ##calling libraries library(reshape) library(car) ## these are the variables I want to recode colname <-
2019 Feb 22
0
[PATCH] tpm: Add driver for TPM over virtio
On Fri, Feb 22, 2019 at 01:40:25PM -0800, David Tolnay wrote: > On 2/21/19 9:51 PM, Michael S. Tsirkin wrote: > > On Thu, Feb 21, 2019 at 06:14:02PM -0800, David Tolnay wrote: > >> Add a config TCG_VIRTIO_VTPM which enables a driver providing the guest > >> kernel side of TPM over virtio. > >> > >> Use case: TPM support is needed for performing trusted
2009 Nov 05
2
Prevent cell phone voice mail capturing call
Hi, I've a DID number that gets passed to three internal phones and a cell phone via my outbound IAX trunk. If the cell phone is off or out of coverage, its voice mail captures the call. What's the best way to avoid this? Is there a recommended way to force the cell phone user to press 1 before the call is passed there ala google voice? Or is there another way to detect the presence of
2005 Sep 29
0
Not able to get Virtual TPM working with Xen,
Hi All, Please read the following steps involved in installing and configuring my Xen box with V-TPM enabled, which I am not able to make it work. Host Linux Distro - CentOS 4.1 Guest Linux distros - Centos 4.1, SUSE TPM module - TPM emulator Downloads: gmp-4.1.4 xen-instable-src.tgz (downloaded on 29/9/2005) bridge-utils-1.0.6.tar.gz compiled and installed gmp-4.1.4 and bridge-utils. Now
2018 Aug 29
1
TPM
On onsdag 29 augusti 2018 kl. 15:37:47 EEST Alvin Starr wrote: > On 08/29/2018 07:38 AM, Dag Nygren wrote: > > > On onsdag 29 augusti 2018 kl. 10:00:39 EEST Sandro Bonazzola wrote: > >> 2018-08-28 13:52 GMT+02:00 Dag Nygren <dag at newtech.fi>: > >> > >>> We have a desperate need for TPM support and: > >>> > >>> 1. Tried the