similar to: Thank you, and your suggestion works

Displaying 20 results from an estimated 10000 matches similar to: "Thank you, and your suggestion works"

2010 Mar 31
0
You are right and the problem is solved. Re: about the possible errors in Rgraphviz Package
Hi Gabor, I just used your R code below and the code worked properly without any error messages. Attached is the output graph, which may be the one you expected. library("Rgraphviz") set.seed(123) V <- letters[1:10] M <- 1:4 g1 <- randomGraph(V, M, 0.2) g1 plot(g1) Thanks. Howard On Wed Mar 31 11:18:25 EDT 2010, Gabor Grothendieck <ggrothendieck at
2010 Mar 31
1
You are right and the problem is solved. Re: about the possible errors in Rgraphviz Package
Hi Martin, It is really a 'PATH' problem. After adding C:\Program Files\Graphviz2.20\bin to the 'PATH' environment variable, the Rgraphviz package can be loaded without any error messages. Sorry that I ONLY set my 'PATH' environment variable correctly for R but not for Graphviz. Thank you and Duncan so much for your great help. Howard On Tue Mar 30 18:12:54
2008 Sep 07
0
Fwd: request: most repeated sequnce
---------- Forwarded message ---------- From: jim holtman <jholtman at gmail.com> Date: Sun, Sep 7, 2008 at 11:42 AM Subject: Re: [R] request: most repeated sequnce To: Muhammad Azam <mazam72 at yahoo.com> This should do it for you: > x=c(1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,3,3,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,3,3,4,4,4,0,0,0,0,0,0,0,1,1,1,2,2,2,3,3,3,4,4,4, +
2007 Oct 10
2
How to catch a R error in R code
Hi All, I entered a R statement, e.g. 1:20 = x or log("a") on an HTML form and passed it to a R-CGI script. Obviously, neither of both is a correct R statement or expression. However, my R-CGI script could not return and report the error message to the Web site even though it received the statement. I tried to use some R built-in functions of try, tryCatch, eval, expression,
2007 Apr 20
0
Fwd: Re: Character coerced to factor and I cannot get it back
--- John Kane <jrkrideau at yahoo.ca> wrote: > Date: Fri, 20 Apr 2007 10:47:45 -0400 (EDT) > From: John Kane <jrkrideau at yahoo.ca> > Subject: Re: [R] Character coerced to factor and I > cannot get it back > To: jim holtman <jholtman at gmail.com> > > Thanks Jim, > > I can live with it as a factor or I will do as you > suggest. What is bothering
2007 Oct 19
2
Help deeded: Does a R graphical function return something special?
Hi All, When I tried to catch a returned value from a R graphical function or command (e.g., plot, lines, points, abline, title, xyplot, etc.), I always get a NULL value if it is executed correctly. For example: x <- c(1,2,3,4,5,9,13,19,36) plot.Comm <- plot(x) # plot.Comm <- try(eval(plot(x))) then plot.Comm has a NULL value. Obviously, this is not a good way to check if or
2006 Oct 28
0
ALARM!!!! Re: regarding large csv file import
hi All, ok fine got it. The design of R is such that it will work only if data fits in the main memory. This issue has been taken up many times but it seems it would be very difficult to change the core code hmmm. ok fine. hence if i want to work then i will have to either partition the data or work with columns. thanks to you all - Sayonara With Smile & With Warm Regards :-) G a u
2006 Oct 28
0
ALARM!!!! Re: regarding large csv file import
hi All, ok fine got it. The design of R is such that it will work only if data fits in the main memory. This issue has been taken up many times but it seems it would be very difficult to change the core code hmmm. ok fine. hence if i want to work then i will have to either partition the data or work with columns. thanks to you all - Sayonara With Smile & With Warm Regards :-) G a u
2008 Jul 17
0
Re : Re : float and double precision with C code
ok, sorry, my mistake was the C printf. Thank you for your good answer Regards ----- Message d'origine ---- De : JS Ubei <jsubei at yahoo.fr> ? : jim holtman <jholtman at gmail.com> Cc : r-help at r-project.org Envoy? le : Jeudi, 17 Juillet 2008, 15h25mn 07s Objet : [R] Re : float and double precision with C code thank you for your quick answer, I'm far of the digits
2008 Jul 17
0
Re : float and double precision with C code
thank you for your quick answer, I'm far of the digits capacity and my values are not the result of a computation. I'm developping a R package to acces a specific data source. And I need precision a few better. How can I do ? When I try this In R console, this is correct and what I need : > my_value <- 29.958334 > my_value == 29.958334 [1] TRUE But I need to do the first
2008 Jul 03
1
Migrating from S-Plus to R - Exporting Tables
Does something like this get you close: x <- list() keys <- LETTERS[1:6] # create for (i in keys){ x[[i]] <- data.frame(a=1:5, b=1:5, c=1:5) } # output output <- file('tempxx.txt', 'w') for (i in keys){ write.table(i, row.names=FALSE, col.names=FALSE, file=output, quote=FALSE) write.table(x[[i]], file=output, quote=FALSE) } close(output) On Wed, Jul 2,
2019 Oct 08
2
Case sensitivity in :addresses in sieve vacation scripts
Hi, I have recently updated from Dovecot 2.2 to 2.3. Since I have noticed that vacation responses from sieve are not working the same anymore. For example, my sieve script looks like this: vacation :days 1 :addresses ["Kippels at hhu.de","julian.kippels at hhu.de"] it used to be that I got a vacation response if I sent a mail to kippels at hhu.de and Kippels at hhu.de. Now
2019 Oct 08
0
Case sensitivity in :addresses in sieve vacation scripts
On Tue, Oct 8, 2019, at 7:58 AM, Julian Kippels via dovecot wrote: > Hi, > > I have recently updated from Dovecot 2.2 to 2.3. Since I have noticed > that vacation responses from sieve are not working the same anymore. > For example, my sieve script looks like this: > > vacation :days 1 :addresses ["Kippels at hhu.de","julian.kippels at hhu.de"] >
2006 Oct 28
0
ALARM!!!! Re: regarding large csv file import
hi Jim, if i partition the file, then for further operation like merging the partitioned files and after that doing some analysis on whole data set would again require the same amount of memory. If i am not able to do or if i am not having memory then i feel there should be serious thinking over the issue of memory handling. hence i am also copying this to r-devel list and i would also would
2006 Oct 28
0
ALARM!!!! Re: regarding large csv file import
hi Jim, if i partition the file, then for further operation like merging the partitioned files and after that doing some analysis on whole data set would again require the same amount of memory. If i am not able to do or if i am not having memory then i feel there should be serious thinking over the issue of memory handling. hence i am also copying this to r-devel list and i would also would
2007 Oct 25
2
the difference between temp and .temp
Hi everyone - This came up within the last day -- Jim's response to Deepankar is pasted below. There are probably lots of reasons, but what is the advantage to using .temp over, say, temp? I often find myself writing temporary objects -- should I use the . preface? What would be the advantages to doing so? Thanks in advance for what will surely be a collection of illuminating responses.
2010 Mar 30
8
about the possible errors in Rgraphviz Package
Hi All, I tried to install the package of Rgraphviz in the following two ways successfully: source("http://bioconductor.org/biocLite.R") biocLite("Rgraphviz") install.packages(pkgs="C:/Progra~1/R/lib_download/Rgraphviz_1.24.0.zip", lib="C:/Progra~1/R/R-2.10.1/library", repos=NULL) but when I loaded the package though library(Rgraphviz) or
2006 Jan 05
1
Suggestion for big files [was: Re: A comment about R:]
ronggui wrote: > If i am familiar with > database software, using database (and R) is the best choice,but > convert the file into database format is not an easy job for me. Good working knowledge of a DBMS is almost invaluable when it comes to working with very large data sets. In addition, learning SQL is piece of cake compared to learning R. On top of that, knowledge of another (SQL)
2009 Sep 22
1
matching pairs regardless of order,multiple matches
Dear Jim and Henrique, thank you both for your help. I have done this but run into another problem: ? In the example?below "loc1,loc2" occurs in the (now correct, thanks to your advice) "list" twice. ? ? trips=("loc1,loc2","loc2,loc3") ? DF$listoftrips=("loc1,loc2", "loc1,loc3", "loc2,loc3","loc1,loc2"). ? I?am
2011 Jun 11
1
isohybrid.c patch: to support hex parameters
??? Hi, Recently it was brought to notice by Mr Steffen(snwint at suse.de) that ---- > syslinux 4 comes with a C-rewrite of isohybrid. Unfortunately the option > parsing has changed: it no longer accepts hex numbers (0x...). Was this > intentional or can we have the old behaviour back (say, changing > sscanf(%u) -> sscanf(%i))? > I've made the changes to the current git