similar to: double-click in RData file versus load( file )

Displaying 20 results from an estimated 2000 matches similar to: "double-click in RData file versus load( file )"

2008 May 30
1
Get all X iterations in optim output when controls(trace=6)
Hi, I would like to get all X iterations in optim output in matrix form. I know about the follow approach: sink("reportOptim") optim( ......., control=list( trace=6,..........) ) sink() all_iterOptim <- readLines("reportOptim") unlink("reportOptim") all_iterOptim <- all_iterOptim[ grep( '^X', all_iterOptim ) ] ### TODO: the rest !!! :-) But it is very
2008 Jun 18
1
Error in bugs.run -- R2WinBUGS
Hi, I tried to use MethComp library and this library make use of the WinBUGS by R2WinBuGUS, but I get the follow error in bugs.run: *Error in bugs.run(n.burnin, bugs.directory, WINE = WINE, useWINE = useWINE, : * Look at the log file and try again with 'debug=TRUE' to figure out what went wrong within Bugs. Anyone can help-me, please? Thanks Cleber library( MethComp ) library(
2007 Oct 05
4
Replacing NA values when building matrix using tapply
Hi, I'm building a matrix m from a data frame d which includes the matrix row, column and value. This works well enough: m <- tapply(d[,"value"],d[,c("row","column")],c) However, I'd like to replace any missing values with 0, not NA. The obvious doesn't work, however: m <-
2007 May 02
2
Asterisk-1.4 with agent snmp
Hi, I`m trying to use the agent snmp buit in the asterisk-1.4, but I can`t do this... I used this link to do it: http://www.voipphreak.ca/archives/382 but I can't... Does somebody know how to do this or knows a how-to to do this?? Thank's _______________________________________________________ Yahoo! Mail - Sempre a melhor op??o para voc?! Experimente j? e veja as
2008 May 29
2
lm() function
hi, my linear model is y=c+a*x1+b*x2 i tried to found a, c, b by the use of: mymodel<-lm(y~1+x1+x2) where y, x1, x2 are 3 vectors with the same length the result is a=NA.so i want to know where is the problem. -- View this message in context: http://www.nabble.com/lm%28%29-function-tp17546079p17546079.html Sent from the R help mailing list archive at Nabble.com.
2007 Jun 20
1
Problem to enter in domain
I am with a problem to enter the server samba+ldap that I configured. When I go in Rwindow$ XP and I try to enter the domain, I type login and the password of root. If I type the password certain the error is ?was not possible to locate the uru?rio name?. If I type the password wrong the error is ?imperfection of logon: name of unknown user or incorrect password?. I looked for regarding the
2007 May 08
1
Problem when PABX call to Asterisk by Unicall
Hi all, I have an Asterisk server connected in a PABX (TELEDATA) by channel Unicall.. I`m having problem when somebody call from PABX to Asterisk.. Eg: When somebody dial 1234, I received 1111112222333333444444 in the Asterisk CLI... If somebody can help me... or already saw this... Everton Goularth Uberlandia - MG - Brazil _______________________________________________________
2007 Jun 06
1
Record CDR in a Oracle database
Hello All, How can I do to record my asterisk's CDR in a Oracle database? I have to use unixODBC? Can anybody send me a step to step to do this configuration? Thank's All Everton Goularth _______________________________________________________ Yahoo! Mail - Sempre a melhor op??o para voc?! Experimente j? e veja as novidades. http://br.yahoo.com/mailbeta/tudonovo/
2007 Dec 04
1
Fax on asterisk
Hi people, I'm tring to configure fax on my asterisk server. I'm using the instructions of: http://www.asteriskguru.com/tutorials/spandsp.html and the files app_rxfax.c, app_txfax.c and apps_Makefile_patch from: http://www.soft-switch.org/downloads/snapshots/spandsp/test-apps-asterisk-1.2/ I have already configure this on other server that the operation system is CentOS 4 and all
2007 Jun 18
4
triangle contour plots
Suppose I have three numbers p1, p2, p3 with 0 <= p1,p2,p3 <= 1 and p1+p2+p3=1, and a function f=f(p1,p2,p3) = f(p1,p2,1-p1-p2). How to draw a contour plot of f() on the p1+p2+p3=1 plane, that is, an equilateral triangle? Functions triplot(), triangle.plot(), and ternaryplot() give only scatterplots, AFAICS -- Robin Hankin Uncertainty Analyst National Oceanography Centre,
2007 Jun 20
1
Res: Record CDR in a Oracle database
Hi All, Thank's for your hint Tim Panton I could connect my asterisk machine to my oracle machine. I used unixODBC-2.2.11.tar.gz, oracle-instantclient-basic-10.2.0.3-1.i386.rpm, oracle-instantclient-sqlplus-10.2.0.3-1.i386.rpm and the drive from www.oracle.com (odbc-oracle-3.1.0-linux-x86-glibc.tar) to configure my asterisk machine. I can connect to my oracle machine with isql and in
2007 Jul 28
8
generating symmetric matrices
Greetings, I have a seemingly simple task which I have not been able to solve today. I want to construct a symmetric matrix of arbtriray size w/o using loops. The following I thought would do it: p <- 6 Rmat <- diag(p) dat.cor <- rnorm(p*(p-1)/2) Rmat[outer(1:p, 1:p, "<")] <- Rmat[outer(1:p, 1:p, ">")] <- dat.cor However, the problem is that the matrix
2007 Dec 02
1
odfWeave error
hello all, I trying to use the package 'odfWeave' and I get the follow error: ### error message ############################################################# ... Removing content.xml Post-processing the contents Error in .Call("RS_XML_Parse", file, handlers, as.logical(addContext), : Error in the XML event driven parser for content_1.xml: error parsing attribute name
2008 Dec 08
1
example of gladeXML - RGtk2
hello all, where I find a example or tutorial of RGtk2 package? I would like to know about the gladeXML functions in R. thanks in advance Cleber Borges
2007 Nov 16
2
Domain server unavailable
Hi all. I'm having a serious problem with my samba/ldap server. It was working well till the last week and today stops definitly. Nothing has changed. Now my network is down and nobody can log in. When I restart samba: invoke-rc.d samba restart * Stopping Samba daemons... start-stop-daemon: warning: failed to kill 4436: No such process
2008 Jun 24
1
Hessian in box-constraint problem - concern OPTIM function
Hello all useRs, I am using the OPTIM function with particular interest in the method L-BFGS-B, because it is a box-constraint method. I have interest in the errors estimates too. I make: s.e. <- sqrt( diag( solve( optim(...,method='L-BFGS-B', hessian=TRUE)$hessian ))) but in help say: "Note that this is the Hessian of the unconstrained problem even if the box constraints
2007 Apr 09
3
tc (CBQ) and UDP packets
2007 Jul 20
2
RDCOM and R versions
Un texte encapsul? et encod? dans un jeu de caract?res inconnu a ?t? nettoy?... Nom : non disponible Url : https://stat.ethz.ch/pipermail/r-help/attachments/20070720/5b905723/attachment.pl
2006 Apr 25
1
RSetReg.exe
R v2.3.0 patched from today: Was just checking out the RSetReg.exe application after reading about it in "R for Windows FAQ": "After installation you can add the Registry entries in HKEY_LOCAL_MACHINE by running RSetReg.exe in the bin folder, and remove them by running this with argument /U. Note that this requires administrative privileges and neither sets up nor removes the file
2009 Jul 14
2
How do I know where is R? - VB Programming
Dear all - Is there anyone know how to let VB or C# know where I install R automatically(i.e. auto detect R directory)? Many thanks! Best, Haoda