similar to: reference classes, LAZY_DUPLICATE_OK, and external pointers

Displaying 20 results from an estimated 100 matches similar to: "reference classes, LAZY_DUPLICATE_OK, and external pointers"

2013 Oct 18
2
pamer.fnc y la nueva versión de R
Javier, Creo que aquí aplica la ley de Linus que dice: "Dado un número suficientemente elevado de ojos, todos los errores se convierten en obvios". La persona que revisa y encuentra un error no necesariamente tiene que ser la misma que la que lo escribe. Una motivación muy importante al compartir un código es la de recibir los beneficios del control de calidad por parte de tus pares.
2013 Oct 18
0
pamer.fnc y la nueva versión de R
Gracias a todos por las recomendaciones. Ya me he puesto en contacto con el autor y le explicado donde esta el error. Es tan fácil como que han cambiado la estructura de los objetos tipos lmer desde la versión 2.15.3 con lo que su paquete dejo de funcionar. Por suerte la nueva estructura conserva por lo menos la parte necesaria para hacer sus funciones. Se localizar el fallo y como arreglarlo, lo
2013 Dec 02
1
pamer.fnc y la nueva versión de R
Hace unos meses os escribir para comunicaros que había un fallo en esta función. Como os prometí os comento la respuesta por si alguno está interesado en utilizar el paquete LMERconvenientsfucntions Dear Javier, The package has been updated and should work for you fine now. Note that function mcp.fnc does not return the fourth plot (dffits) anymore. We still have to figure out a way to compute
2017 Feb 22
0
Crash in the latest release
I found this by accident yesterday. The program that crashes is the first two lines of the example from the help page for nlmer. That example hasn't changed in a long time, so I assumed that it is an R-devel issue. It could also be a long latent nlmer bug. The second run with valgrind is puzzling. Terry T. > library(lmer) > sessionInfo() R Under development (unstable)
2017 Feb 22
0
[Lme4-authors] Crash in the latest release
Thanks, posted to https://github.com/lme4/lme4/issues/412 for further discussion ... On Wed, Feb 22, 2017 at 10:03 AM, Therneau, Terry M., Ph.D. <therneau at mayo.edu> wrote: > I found this by accident yesterday. The program that crashes is the first > two lines of the example from the help page for nlmer. That example hasn't > changed in a long time, so I assumed that it is
2007 Mar 16
1
Probably simple function problem
# I have a simple function problem. I thought that I could write a function to modify a couple of vectors but I am doing something wrong #I have a standard cost vector called "fuel" and some adjustments to the #costs called "adjusts". The changes are completely dependend on the length #of the dataframe newdata I then need to take the modifed vectors and use # them later. I
2010 Apr 29
1
Using plyr::dply more (memory) efficiently?
Hi all, In short: I'm running ddply on an admittedly (somehow) large data.frame (not that large). It runs fine until it finishes and gets to the "collating" part where all subsets of my data.frame have been summarized and they are being reassembled into the final summary data.frame (sorry, don't know the correct plyr terminology). During collation, my R workspace RAM usage goes
2015 Mar 17
0
E-navodila v slovenskem jeziku ZA POMOČ PRI DELU NA GRAFIČNIH PROGRAMIH ADOBE, PHOTOSHOP, INDESIGN,ILLUSTRATOR
Your email client cannot read this email. To view it online, please go here: http://obvestila.bizidan.com/display.php?M=272287&C=9501c1f306f9ce4b2d530d28eb764580&S=227&L=5&N=240 To stop receiving these emails:http://obvestila.bizidan.com/unsubscribe.php?M=272287&C=9501c1f306f9ce4b2d530d28eb764580&L=5&N=227 -------------- next part -------------- An HTML attachment was
2011 Dec 19
1
Calculating the probability of an event at time "t" from a Cox model fit
Dear R-users, I would like to determine the probability of event at specific time using cox model fit. On the development sample data I am able to get the probability of a event at time point(t). I need probability score of a event at specific time, using scoring scoring dataset which will have only covariates and not the response variables. Here is the sample code: n = 1000 beta1 = 2; beta2 =
2003 Nov 02
17
New IAX software phone (for WIndows platform)
Hi all, I have developed a full featured Windows IAX phone based on LIBIAX library . It is now in a prerelease version (0.9.0) and you can download it for free from my web page: http://www.laser.com/dante or http://www.geocities.com/tdanro Some of the features are: - registering with Asterisk PBX; - can use any audio device as ring device (including PC speaker), independent of the play device;
2013 Jun 20
0
how to run copula-based quantile regression
Hi, I want to run a quantile regression (Y=a+bX+e) using normal and t copula for my dissertation. I 've read the documentation of "copula" and "copBasic". However, I still have difficulty to deal with my data. Details are as following: I've already loaded xls data into r using "XLConnect" package. excel.file<-file.path("Q:/dailyvstoxx.xls")
2007 Nov 26
2
Problem installing R on Solaris 9
I've downloaded R-2.6.0 I want to install it on Solaris, so, I run the configure command, it to be fine, but once I run make it give me the following error: *ld: fatal : fichier Rmain.o : type de machine ELF erronV : EM_386 ld: fatal : Erreurs dans le traitement des fichiers. Aucun rVsultat n'a VtV Vcr it dans R.bin collect2: ld returned 1 exit status *** Error code 1 make: Fatal error:
2017 Jun 04
2
read.table
Hi All, I wonder if there should be one character for quote= in read.table, i.e., > args(read.table) function (file, header = FALSE, sep = "", quote = "\"'", dec = ".", ... I have a file containing the following lines, 08248-GOTERM 3'-phosphoadenosine 5'-phosphosulfate biosynthetic process 08279-GOTERM 3'-phosphoadenosine
2012 Dec 13
2
simulate time data
Hi, Does anyone know how to write a command to generate time-to-event data for Cox's regression?   Scomet [[alternative HTML version deleted]]
2012 Jan 17
1
Scoring using cox model: probability of survival before time t
Dear Members, I required to score probability of survival before specified time using fitted cox model on scoring dataset. On the training sample data I am able to get the probability of a survival before time point(t), but on the scoring dataset, which will have only predictor information I am facing some issues. It would be great help for me if you tell me where am I going wrong! Here is the
2005 Apr 06
2
two methods for regression, two different results
Please forgive a straight stats question, and the informal notation. let us say we wish to perform a liner regression: y=b0 + b1*x + b2*z There are two ways this can be done, the usual way, as a single regression, fit1<-lm(y~x+z) or by doing two regressions. In the first regression we could have y as the dependent variable and x as the independent variable fit2<-lm(y~x). The second
2013 May 07
1
Problem with biomaRt::getSequence.
Hi, I can run the code some days ago . But cant run now.  Problem 1: Output is ok ensembl = useDataset("hsapiens_gene_ensembl",mart=ensembl) utr5 = getSequence(chromosome=3, start=185514033, end=185535839, type="entrezgene",seqType="5utr", mart=ensembl)  Output :                                                                                                5utr
2008 Jan 15
0
Help with the generic function "["
Hello Everyone: I'm hoping to get some suggestions on this problem i'm having with subsetting on an R object i've created. I would really appreciate any advice. I've created this simple S3 class: >str(ans) Class 'myObj' atomic [1:45000] 0.0428 0.0423 0.0554 0.0338 0.0345 ... ..- attr(*, "Size")= int 10 ..- attr(*, "Region")= chr
2003 Jan 14
1
rsync hanging with openssh-2.9.9p2 as the transport
Hi, This is perhaps a stupid question. I apologize in advance if it's already been covered, but I'm stumped... I'm using rsync to backup some file systems to a remote host. The transport is openssh-2.9.9p2. The problem does not occur when the transport is rsh. I'm invoking rsync as follows: rsync -RlHptgoD --numeric-ids -e "ssh" -rzx --stats .
2006 Jul 10
1
R newbie
Hello, I am new to R and still feeling my way thru it. I am trying to plot the values from this file below on the X-axis of a plot. I have attached the graph to the email...the one i am trying to recreate. Exon start end 5'UTR 22540060 22540121 1 22540122 22540140 2 22540303 22540493 3 22541552 22541565 4 22542373 22542519 5 22544265 22544432 3'UTR 22544433 22544856 I would like to