search for: seanpor

Displaying 20 results from an estimated 20 matches for "seanpor".

2008 Mar 28
1
cpu usage high with windows change dir / winDialogString (PR#11045)
...) - I'm afraid I have never programmed windows at a low level so I'm not sure what's going on here... I am of course available to help pin this down - but unfortunately I don't have a development environment here. Best Regards, Sean O'Riordain Dublin, Ireland not affiliated... seanpor A T acm D ot org
2003 Oct 15
3
r-ish ? how can i improve my code?
...program which does a 'monte-carlo' type simulation. However, it is written in a way which seems a bit un-natural in R. Could someone help me make this a bit more R-ish please? Or is there a completely different approach I should be taking? Many thanks in advance, Sean O'Riordain seanpor AT acm.org -------------------------------------------- n <- 900; # number of valid items required... x <- numeric(n); y <- numeric(n); z <- numeric(n); c <- 1; # current 'array' pointer tc <- 0; # total items actually looked at... while (c <= n) { x[c] = run...
2008 Mar 29
0
cpu usage high with windows change dir / winDialogString (PR#11051)
On 28/03/2008 12:05 PM, seanpor at acm.org wrote: > Good afternoon, > > This is possibly a windows only bug, definitely of comparatively low > importance - but for the sake of completeness here we go. I've > searched http://bugs.R-project.org/ etc., but can find no mention. > > For RGui.exe, the CPU us...
2005 Aug 09
2
connexion problem getHdata (HMisc)
********************************************************************** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. ********************************************************************** Hi Just installing R and some
2003 Jun 12
2
R_PHP_Online version 0.2 with Security Fix
Hi all, Thanks to Dr Paul Murrell in New Zealand to remind me of security consideration. I am releasing version 0.2 with security fix. This version will allow you to add banned R function names in a list. R_PHP_Online is a PHP CGI web interface to run R programs online, with the capability to show graphics online. You can get current version of R_PHP_Online from http://steve-chen.net/R_PHP/
2012 Mar 14
2
Moore-Penrose Generalized determinant?
Is there a function in R to calculate the generalized determinant of a singular matrix? - similar to the ginv() used to compute the generalized inverse. I can't seem to find any R related posts at all. Thanks in advance, Sean O'Riordain Trinity College Dublin -- View this message in context: http://r.789695.n4.nabble.com/Moore-Penrose-Generalized-determinant-tp4471629p4471629.html Sent
2008 Dec 01
1
trivial spelling correction
Good evening, Spotted a very minor spelling mistake in the source for the grep help. And thanks to R-Core for all their work - it's a tribute to R-Core, that these sort of "problems" are rare indeed. Best regards, Sean O'Riordain Dublin sean at sean7:~/R/RSVN/R/trunk/src/library/base/man$ svn diff Index: grep.Rd
2008 Mar 19
1
running balance down a dataframe referring back to previous row
Good morning, I've searched high and low and I've tried many different ways of doing this, but I can't seem to get it to work. I'm looking for a way of vectorising a "running balance"; i.e. the value in the first row of the dataframe is zero, and following rows add to this running balance. This is easy to write in a loop, but I can't seem to get it working in
2013 Nov 01
5
cat with backspace and newline characters
Hi, when mixing newline and backspace characters I get the following output (see below). In the second call, the backspace character is simply not applied. Is this normal behaviour? Thank you. > cat("abc\b") ab> cat("abc\b\n") abc > [[alternative HTML version deleted]]
2010 Mar 09
1
rJava works on karmic for root but not for user sean
Good afternoon, A strange one - library(rJava) works for root but not for user sean On 64-bit Ubuntu 9.10, using R as root (sudo -i), I can say library(rJava) and it works fine with no error message of any kind. But logged in as myself user "sean", it can't start... sean at SeansPC:~$ R --no-save --vanilla R version 2.10.1 (2009-12-14) Copyright (C) 2009 The R Foundation for
2006 May 11
4
data input strategy - lots of csv files
Good morning, I have currently 63 .csv files most of which have lines which look like 01/06/05,23445 Though some files have two numbers beside each date. There are missing values, and currently the longest file has 318 rows. (merge() is losing the head and doing runaway memory allocation - but thats another question - I'm still trying to pin that issue down and make a small repeatable
2009 Mar 09
5
Help
...tation with fit.mult.impute in Hmisc - how > to replace NA with imputed value? (Frank E Harrell Jr) > 10. Re: construct a vector (Wacek Kusnierczyk) > 11. Re: construct a vector (axionator) > 12. Re: Question about Kolmogorov-Smirnov Test (Uwe Ligges) > 13. Re: memory limit (seanpor) > 14. Re: Very slow: using double apply and cor.test to compute > correlation p.values for 2 matrices (jim holtman) > 15. how to check linearity in Cox regression (Terry Therneau) > 16. Chi-Square Test Disagreement (Andrew Choens) > 17. Re: eclipse and R (Tobias Verbeke) &g...
2008 Nov 21
3
HELP
[This email is either empty or too large to be displayed at this time]
2008 Jul 25
0
discrete event simulation - "factory" with rework
Good morning, I wonder could somebody help me bridge the gap? I want to try and simulate a "factory" type environment with an object moving between stages of production with errors and re-work. The intent of this is to demonstrate the effect of error rates and re-work at various stages in the 'factory' on the total volumes of work at each stage of the factory - in order to
2011 Apr 25
1
possible minor doc clarification?
Good afternoon, As a clarification does it make sense to remove the second 'not' in the 'See Also' documentation for file_test ? Kind regards, Sean O'Riordain ----- Index: src/library/utils/man/filetest.Rd =================================================================== --- src/library/utils/man/filetest.Rd (revision 55639) +++ src/library/utils/man/filetest.Rd
2013 Aug 10
1
broken link in docs for Binormial functions
On the local documentation page for Binomial, i.e. http://127.0.0.1:xxxx/library/stats/html/Binomial.html The link to Catherine Loader's paper "Catherine Loader (2000). *Fast and Accurate Computation of Binomial Probabilities*; available from http://www.herine.net/stat/software/dbinom.html." appears to be broken. Kind regards, Seán [[alternative HTML version deleted]]
2010 Jan 07
2
table() and setting useNA to be there by default?
Good morning, Is there a way to get table() to default to including NAs - as in... table(..., useNA='ifany') or table(..., useNA='always') or table(..., exclude=NULL) ? I can't see a way under table() or options() or searching the archives (probably using the wrong keyword?). > t1 <- c(1,2,3,3,3,2,NA,NA,NA,NA) > table(t1) t1 1 2 3 1 2 3 I keep forgetting to
2013 Apr 10
1
Issue with Control-Z in a text file on Windows - readLines() appears to truncate
Working on Windows I have had to deal with CSV files that, unfortunately, contain embedded Control-Zs, i.e. ASCII character 26 in decimal, and the readLines() function in R on Windows (2.15.2 and 3.0.0) appears to truncate at the control-Z. There is no problem at all on Ubuntu Linux with R 3.0.0. Am I mistaken or is this genuine? # Create a small file with embedded Control-Z h3 <-
2006 Sep 18
1
uniform integer RNG 0 to t inclusive
Good morning, I'm trying to concisely generate a single integer from 0 to n inclusive, where n might be of the order of hundreds of millions. This will however be used many times during the general procedure, so it must be "reasonably efficient" in both memory and time... (at some later stage in the development I hope to go vectorized) The examples I've found through searching
2006 May 20
1
merge problem... extra lines appear in the presence of NAs
Good morning! I've searched the docs etc... Am I doing something wrong or is this a bug? I'm doing a merge of two dataframes and getting extra rows in the resulting dataframe - the dataframes being merged might have NAs... count <- 10 nacount <- 3 a1 <- as.data.frame(as.Date("2005-06-01")+0:(count-1)) names(a1) <- "mdate" a1$value <- runif(count)