Re: [R] sem package, suppress warnings

2013-01-20 Thread Steve Taylor
: [R] sem package, suppress warnings Hi, I'm using the sem package under conditions where I know beforehand that several models will be problematic. Because of that, I want to suppress warnings. I've used the following code sem(mod, S = as.matrix(dataset), N = 1000, maxiter = 1

Re: [R] sem package, suppress warnings

2013-01-20 Thread John Fox
-Original Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On Behalf Of Steve Taylor Sent: Sunday, January 20, 2013 3:22 PM To: Dustin Fife; r-help Subject: Re: [R] sem package, suppress warnings Have you tried suppressWarnings(sem(mod, S = as.matrix

Re: [R] sem package, suppress warnings

2013-01-20 Thread Dustin Fife
, 2013 3:22 PM To: Dustin Fife; r-help Subject: Re: [R] sem package, suppress warnings Have you tried suppressWarnings(sem(mod, S = as.matrix(dataset), N = 1000, maxiter = 1, warn = FALSE)) -Original Message- From: r-help-boun...@r-project.org [mailto:r-help-bounces@r

[R] sem package, suppress warnings

2013-01-18 Thread Dustin Fife
Hi, I'm using the sem package under conditions where I know beforehand that several models will be problematic. Because of that, I want to suppress warnings. I've used the following code sem(mod, S = as.matrix(dataset), N = 1000, maxiter = 1, warn = FALSE) But I still get