similar to: Ouch - brown, hansen error

Displaying 20 results from an estimated 100 matches similar to: "Ouch - brown, hansen error"

2011 Sep 04
2
AICc function with gls
Hi I get the following error when I try and get the AICc for a gls regression using qpcR: > AICc(gls1) Loading required package: nlme Error in n/(n - p - 1) : 'n' is missing My gls is like this: > gls1 Generalized least squares fit by REML Model: thercarnmax ~ therherbmax Data: NULL Log-restricted-likelihood: 2.328125 Coefficients: (Intercept) therherbmax 1.6441405
2011 Jul 20
1
Grofit
Hi Is it possible to use grofit to get the AIC of several (e.g. two) growth models and compare both these and model parameters? All I can get it to do so far is return parameters for a single model. Cheers Roland [[alternative HTML version deleted]]
2011 Jul 26
1
nls - can't get published AICc and parameters
Hi I'm trying to replicate Smith et al.'s (http://www.sciencemag.org/content/330/6008/1216.abstract) findings by fitting their Gompertz and logistic models to their data (given in their supplement). I'm doing this as I want to then apply the equations to my own data. Try as a might, I can't quite replicate them. Any thoughts why are much appreciated. I've tried contacting the
2012 Dec 27
2
Help reading matrixmarket files
I'm trying to read data a program produces in matrixmarket array format into R and its giving me fits. I've tried read.MM (below) and readMM (from the Matrix package) but neither works. One of them says array format isn't supported, the other reports something indecipherable about Fortran. Here's the file contents. Can't get much simpler than that! %%MatrixMarket matrix array
2011 Dec 21
1
Is there a way force hiding of all messages when calling library()?
For example, if I call "library(spam)", I would get messages like this Package 'spam' is loaded. Spam version 0.27-0 (2011-08-17). Type demo( spam) for some demos, help( Spam) for an overview of this package. Help for individual functions is optained by adding the suffix '.spam' to the function name, e.g. 'help(chol.spam)'. Attaching package: ?spam? The
2010 May 29
1
warning In fun(...) : no DISPLAY variable so Tk is not available
I am getting the above warning following loading of Geneland 3.1.5 on unix , while a simple plot sends output to the pdf file ( see attached code) no output results from Geneland functions, resulting in empty pdf files > library (Geneland) Loading required package: RandomFields Loading required package: fields Loading required package: spam Package 'spam' is loaded. Spam version
2009 Feb 08
3
general inverse solver?
Just wondering if there's an R package which does tricks similar to what TK!Solver does. TK!Solver, for those not lucky enough to have found it, basically allows one to define a bunch of equations, assign values to an arbitrary subset of the variables, from which it calculates (either directly when possible or back-solving when not) the values of the other variable(s). thanks Carl
2010 May 20
1
Geneland error on unix: Error in MCMC(........ :, unused argument(s) (ploidy = 2, genotypes = geno)
I am receiving the above error ( full r session output below) the script runs OK in windows. and "genotypes" and "ploidy" are both correct arguments any suggestions would be most welcome Nevil Amos MERG/ACB Monash University School of Biological Sciences > library(Geneland) Loading required package: RandomFields Loading required package: fields Loading required
2005 Jul 05
0
Code of Hansen's (2000) Econometrica paper on threshold estimation
I am searching for an R version of the code written in GAUSS by Bruce Hansen for his paper on Econometrica, 2000, "Sample Splitting and Threshold Estimation". Someone can help me? Davide -- Davide Fiaschi Dipartimento di Scienze Economiche University of Pisa Via Ridolfi 10 56100 Pisa (PI) Italy Phone/Fax: ++39.050.2216208/++39.050.598040 E-mail: dfiaschi at ec.unipi.it Homepage:
2011 Feb 15
0
New Puppet Labs Employee: Randall Hansen
I''m happy to announce we''ve recently added Randall Hansen as our Director of User Experience at Puppet Labs. He''s on IRC as ''soh'', and in his own words... I got hooked on human-computer interaction in 1986, writing Pascal programs to help dad navigate a Tandy 1000SX. I followed a twisty path through engineering school to get a degree in English and
2011 Oct 09
1
strucchange Nyblom-Hansen Test?
I want to apply Nyblom-Hansen test with the strucchange package, but I don't know how is the correct way and what is the difference between the following two approaches (leeding to different results): data("longley") # 1. Approach: sctest(Employed ~ Year + GNP.deflator + GNP + Armed.Forces, data = longley, type = "Nyblom-Hansen") #results in: # Score-based CUSUM
2004 Aug 05
0
PRI Errors... Ouch
Today is the first time I've had any show stopping errors with asterisk since I started using it over 8 months ago... While I wait on the telco to check the circuit I thought I would post this here. Not sure yet but I thinks my 4-port PRI card is gone!!! I made a call and right when the person answered - BOOM. This is only a little better than it not working at all.
2005 Jan 05
1
Ouch... Error while writing audio data
After installing the stable version of * and the Zaptel drivers with a TDM400 card using 1 FXO module on port 4, I start Asterisk and get this rolling up my screen thousands of times: Ouch... Error while writing audio data Ouch... Error while writing audio data Ouch... Error while writing audio data Ouch... Error while writing audio data Ouch... Error while writing audio data Ouch... Error while
2005 Aug 26
0
Asterisk on VMWare 4.5, Error Ouch ... error while writing audio data
I' m using Asterisk 1.09 on an virtual pc (VMWare 4.5) for testing. I can make calls from a Softphone to softphone, Hardphone to Softphone and so on. I can hear both RTP Streams. But when I call prompst on Asterisk I can hear nothing. RTP Stream goning from Phone to Asterisk but not the other way. I I start the PBX for console I got an error [app_rxfax.so][root@asterisk1 root]# Ouch ... error
2000 Apr 19
0
lock failed at offset 1073741735??? *ouch*
Folks, I'm trying to share an NFS-mounted volume with Samba - and something's amiss. Accessing any of the .doc files from a Win95 PC (Office 97) says "The file is already in use - make a copy?". Samba's log says: [2000/04/19 10:52:34, 3] lib/util.c:fcntl_lock(2773) fcntl lock gave errno 11 (Resource temporarily unavailable) [2000/04/19 10:52:34, 3]
2004 Oct 06
3
crossprod vs %*% timing
Hi the manpage says that crossprod(x,y) is formally equivalent to, but faster than, the call 't(x) %*% y'. I have a vector 'a' and a matrix 'A', and need to evaluate 't(a) %*% A %*% a' many many times, and performance is becoming crucial. With f1 <- function(a,X){ ignore <- t(a) %*% X %*% a } f2 <- function(a,X){ ignore <-
2008 Oct 16
3
ouch
yeah, ok, but why so rude? [Embarassed] i just asked for some help because i myself screwed it up on the process of configuring wine (mainly because i skipped through the howto very fast) , so it just seemed normal to come here to winehq. isn't wine exactly one of the ways to get free from M$?
2005 Sep 06
2
Speaking of Polycom phones...updated ROM: ouch!
Hi folks, New to the list. Just updated the bootrom and app firmware on a Soundpoint IP 501 as per: http://www.voip-info.org/wiki-Polycom+Phones Updated from: to: APP 1.4.1.0040 1.5.2.0054 BootROM 2.6.1.0003 2.6.2.0032 After I did this, it appears that the Web interface for the phone won't change the settings, nor will it actually reboot the phone now. What do I
2005 Jan 30
1
Asterisk 1.0.5-BRIstuffed-0.2.0-RC5 crashes with Ouch ... error while writing audio data: : Broken pipe
I have Asterisk 1.0.5-BRIstuffed-0.2.0-RC5 up and running. Everything seems to be running fine but after some time asterisk just goes crazy (even withouth any incoming or outgoing call activity perviously). If I leave the box up for some time * goes haywire and the console is flooded with this message: Ouch ... error while writing audio data: : Broken pipe At that time I can see that there
2001 Feb 02
3
Ouch, here's an odd one.
Hi, This is based on ext3 0.0.5e and latest LVM snapshot from Sistina CVS. I've been playing with LVM snapshotting in that I'd been getting system hangs and trying to help resolve that issue, but in the process today I stumbled upon an interesting side-effect. This is on my laptop, running 2.2.18 with loads of patches and above LVM and ext3. Basically, forewarning, all of this was done