search for: damico

Displaying 20 results from an estimated 50 matches for "damico".

2012 Jun 20
4
binary operators that never return missing values
...f thing? All I want are a group of functions like the ones I've posted below, but I'm worried I'm re-inventing the wheel.. If they're not already on CRAN, I feel like I should add them. Any pointers to work already completed on this subject would be appreciated. Thanks! Anthony Damico Kaiser Family Foundation Here's a simple example of what I need done on a regular basis: #two numeric vectors a <- c( 1 , NA , 7 , 2 , NA ) b <- c( NA , NA , 9 , 1 , 6 ) #this has lots of NAs a > b #save this result in x x <- (a > b) #overwrite NAs in x with falses (which...
2017 Jul 16
2
readLines without skipNul=TRUE causes crash
On 16/07/2017 6:17 AM, Anthony Damico wrote: > thank you for taking the time to write this. i set it running last > night and it's still going -- if it doesn't finish by tomorrow, i will > try to find a site to host the problem file and add that link to the bug > report so the archive package can be avoided at leas...
2012 Jan 09
2
Unexpected results using the oneway_test in the coin package
Dear fellow R users, Keywords: Kruskal-Wallis, Post-Hoc, pair-wise comparisons, Nemenyi-Damico-Wolfe-Dunn test, coin package, oneway_test I am using the "oneway_test" function in the R package "coin" and I am obtaining results which I cannot believe are accurate. I do not wish to waste anyone's time and so if the following problem is rather trivial, I apologize, howe...
2017 Jul 16
0
readLines without skipNul=TRUE causes crash
...ze isdir mode mtime ctime atime exe S:/temp/crash.txt 4078192743 FALSE 666 2017-07-15 17:24:35 2017-07-15 17:19:47 2017-07-15 17:19:47 no On Sun, Jul 16, 2017 at 6:34 AM, Duncan Murdoch <murdoch.duncan at gmail.com> wrote: > On 16/07/2017 6:17 AM, Anthony Damico wrote: > >> thank you for taking the time to write this. i set it running last >> night and it's still going -- if it doesn't finish by tomorrow, i will >> try to find a site to host the problem file and add that link to the bug >> report so the archive package c...
2012 Mar 26
0
Different result with "kruskal.test" and post-hoc analysis with Nemenyi-Damico-Wolfe-Dunn test implemented in the help page for oneway_test in the coin package that uses multcomp
Dear Researchers, Sorry for this email but I am not a statistician, and for this I have this problem to understand. Thanks in Advance for help and suggestions. Gianni I have 21 classes (00, 01, 02, 04, ....,020) with different length. I did a kruskal wall test in R with the following code kruskal.test(m.class.l, m.class.length.lf) Kruskal-Wallis rank sum test data: m.class.l and
2017 Jul 17
1
readLines without skipNul=TRUE causes crash
...Brazilian government about their > RAR file because the RAR file seems fine (no NUL characters appear in the > text file) when extracted using the file-roller archive tool on Ubuntu. > -- > Sent from my phone. Please excuse my brevity. > > On July 16, 2017 9:37:17 AM PDT, Anthony Damico <ajdamico at gmail.com> > wrote: > >hi, yep, there are two problems -- but i think only the segfault is > >within > >the scope of a base R issue? i need to look closer at the corrupted > >decompression and figure out whether i should talk to the brazilian > >...
2017 Jul 16
2
readLines without skipNul=TRUE causes crash
...hen presented > with that corrupt file? Can you please confirm the file name and run md5sum > on it and share the result so we can tell when the file problem has been > reproduced? > -- > Sent from my phone. Please excuse my brevity. > > On July 16, 2017 3:21:21 AM PDT, Anthony Damico <ajdamico at gmail.com> > wrote: > >hi, thank you for attempting this. it looks like your unix machine > >unzipped > >the txt file without corruption -- if you copied over the same txt file > >to > >windows 7, i don't think that would reproduce the problem...
2017 Jul 15
0
readLines without skipNul=TRUE causes crash
...pefully i am not doing something remarkably stupid. the text file itself is 4GB so cannot upload it to bugzilla, and from the R_AllocStringBugger error in the previous message, i think most or all of it needs to be there to trigger the segfault. thanks! On Sat, Jul 15, 2017 at 10:32 AM, Anthony Damico <ajdamico at gmail.com> wrote: > hi, thanks Dr. Murdoch > > > i'd appreciate if anyone on r-help could help me narrow this down? i > believe the segfault occurs because there's a single line with 4GB and also > embedded nuls, but i am not sure how to artificially c...
2017 Jul 16
3
readLines without skipNul=TRUE causes crash
...Microdados ENEM 2009/Dados Enem >> 2009/DADOS_ENEM_2009.txt >> ## >> "83e61c96092285b60d7bf6b0dbc7072e" >> dat <- readLines( fn1 ) >> length( dat ) >> ## [1] 4148721 >> >> No segfault occurs. >> >> On Sat, 15 Jul 2017, Anthony Damico wrote: >> >> hi, i realized that the segfault happens on the text file in a new R >>> session. so, creating the segfault-generating text file requires a >>> contributed package, but prompting the actual segfault does not -- pretty >>> sure that means this is...
2011 Jul 22
1
Recoding Multiple Variables in a Data Frame in One Step
...iclus1$meals > 98 , c( "pcttest" , "api00" , "sch.wide" ) ] I know I can do this with a few more steps (like one variable at a time or by counting the number of rows to replace and then using rep() ..but I'm hoping there's a quicker way? Thanks!! Anthony Damico Kaiser Family Foundation using R 2.13.0 in Windows x64 [[alternative HTML version deleted]]
2017 Jul 16
0
readLines without skipNul=TRUE causes crash
...urage you from harassing the Brazilian government about their RAR file because the RAR file seems fine (no NUL characters appear in the text file) when extracted using the file-roller archive tool on Ubuntu. -- Sent from my phone. Please excuse my brevity. On July 16, 2017 9:37:17 AM PDT, Anthony Damico <ajdamico at gmail.com> wrote: >hi, yep, there are two problems -- but i think only the segfault is >within >the scope of a base R issue? i need to look closer at the corrupted >decompression and figure out whether i should talk to the brazilian >government agency that creates...
2009 Oct 23
2
Memory Problems with CSV and Survey Objects
...and not a svrepdesign object - and also because neither the DB SO website nor the svrepdesign help page make any mention of those parameters. The DB SOs are described in detail here: http://faculty.washington.edu/tlumley/survey/svy-dbi.html Any advice would be truly appreciated. Thanks, Anthony Damico [[alternative HTML version deleted]]
2017 Jul 15
4
readLines without skipNul=TRUE causes crash
...ile() a <- rep( "a" , 1000000000 ) b <- paste( a , collapse = '' ) writeLines( b , tf ) ; rm( b ) ; gc() d <- readLines( tf ) On Sat, Jul 15, 2017 at 9:17 AM, Duncan Murdoch <murdoch.duncan at gmail.com> wrote: > On 15/07/2017 7:35 AM, Anthony Damico wrote: > >> hello, the last line of the code below causes a segfault for me on 3.4.1. >> i think i should submit to https://bugs.r-project.org/ unless others >> have >> advice? thanks >> > > Segfaults are usually worth reporting as bugs. Try to come up with...
2017 Jul 15
2
readLines without skipNul=TRUE causes crash
On 15/07/2017 11:33 AM, Anthony Damico wrote: > hi, i realized that the segfault happens on the text file in a new R > session. so, creating the segfault-generating text file requires a > contributed package, but prompting the actual segfault does not -- > pretty sure that means this is a base R bug? submitted here: > h...
2017 Jul 16
0
readLines without skipNul=TRUE causes crash
...ed file, and one that segfaults when presented with that corrupt file? Can you please confirm the file name and run md5sum on it and share the result so we can tell when the file problem has been reproduced? -- Sent from my phone. Please excuse my brevity. On July 16, 2017 3:21:21 AM PDT, Anthony Damico <ajdamico at gmail.com> wrote: >hi, thank you for attempting this. it looks like your unix machine >unzipped >the txt file without corruption -- if you copied over the same txt file >to >windows 7, i don't think that would reproduce the problem? i think it >needs to be...
2010 Dec 10
2
Could concurrent R sessions mix up variables?
...rocessors are at 100%, and my Windows Task Manager says I'm using almost 100% of my 16 GB of RAM. Is it possible that intense resource use would cause a variable conflict like this? I have no idea where to start troubleshooting this error, so any advice would be appreciated. Thanks! Anthony Damico Kaiser Family Foundation
2017 Jul 15
3
readLines without skipNul=TRUE causes crash
...d5sum( fn1 ) ## /home/jdnewmil/Downloads/Microdados ENEM 2009/Dados Enem 2009/DADOS_ENEM_2009.txt ## "83e61c96092285b60d7bf6b0dbc7072e" dat <- readLines( fn1 ) length( dat ) ## [1] 4148721 No segfault occurs. On Sat, 15 Jul 2017, Anthony Damico wrote: > hi, i realized that the segfault happens on the text file in a new R > session. so, creating the segfault-generating text file requires a > contributed package, but prompting the actual segfault does not -- pretty > sure that means this is a base R bug? submitted here: >...
2017 Jul 16
0
readLines without skipNul=TRUE causes crash
...row, i will try to find a site to host the problem file and add that link to the bug report so the archive package can be avoided at least. i'm sorry for the bother On Sat, Jul 15, 2017 at 4:14 PM, Duncan Murdoch <murdoch.duncan at gmail.com> wrote: > On 15/07/2017 11:33 AM, Anthony Damico wrote: > >> hi, i realized that the segfault happens on the text file in a new R >> session. so, creating the segfault-generating text file requires a >> contributed package, but prompting the actual segfault does not -- >> pretty sure that means this is a base R bug? s...
2017 Jul 15
0
readLines without skipNul=TRUE causes crash
...ds/Microdados ENEM 2009/Dados Enem 2009/DADOS_ENEM_2009.txt > ## "83e61c96092285b60d7bf6b0dbc7072e" > dat <- readLines( fn1 ) > length( dat ) > ## [1] 4148721 > > No segfault occurs. > > On Sat, 15 Jul 2017, Anthony Damico wrote: > >> hi, i realized that the segfault happens on the text file in a new R >> session. so, creating the segfault-generating text file requires a >> contributed package, but prompting the actual segfault does not -- pretty >> sure that means this is a base R bug? s...
2010 Sep 16
1
Nemenyi test as a post-hoc test to Kruskal Wallis
Dear all, I've discovered the possibility to do the Nemenyi-Damico-Wolfe-Dunn test in the library(coin); oneway_test() With the given example I am unfortunately not able to reproduce the test. What does trafo and contrMat mean? I have a dataframe with 176 elements in 7 classes. It may be a problem, that my model isn't balanced? In Class1 I happen to have 4 ele...