search for: eoo

Displaying 20 results from an estimated 37 matches for "eoo".

Did you mean: eio
2008 Aug 29
1
DB stop&start
Hi I need a script to automatically Starting/Stopping an Oracle 10g DB on CentOS5.2 64bit i.e lsnrctl start/stop db start/stop emctl start/stop dbconsole" Any help? -- Madunix_at_Gmail Sysadmin "Computers are useless. They can only give you answers" - Pablo Picasso "Never trust a computer you can't throw out a window." - Steve Wozniak -------------- next part
2015 May 13
3
Alternative for wildcard gnu extension in Makevars
Dirk Eddelbuettel <edd at debian.org> schreef: > On 13 May 2015 at 17:27, Jan van der Laan wrote: > | > | I have some cpp-files from another library (boost) in a subdirectory > | in my src directory (src/boost_src). I include these using the > | following two lines in my Makevars: > | > | SOURCES = $(wildcard *.cpp boost_src/*.cpp) > | OBJECTS = $(SOURCES:.cpp=.o)
2015 May 13
4
Alternative for wildcard gnu extension in Makevars
...39;); makevars()" And that 'makevars()' function could generate portable 'Makevars(.win)' files for your package. Kevin On Wed, May 13, 2015 at 9:08 AM, G?bor Cs?rdi <csardi.gabor at gmail.com> wrote: > On Wed, May 13, 2015 at 12:05 PM, Jan van der Laan <rhelp at eoos.dds.nl> > wrote: > [...] > >> Too bad. Since it is only a handful of files, I will probably move them >> directly into the src directory and prefix them. It would have been nice to >> have been able to keep them separate. >> > > If it is a couple of files,...
2006 Feb 17
2
Sorting Multiple Arrays
...data": [ {"line": [1,"aoo","far"]}, {"line": [2,"boo","ear"]}, {"line": [3,"coo","dar"]}, {"line": [4,"doo","car"]}, {"line": [5,"eoo","bar"]}, {"line": [6,"foo","aar"]} ] }; I''d like to be able to sort across the arrays. so that the objects in the "data" array rearange themselves based on what column of the "line" arrays are sorted. So for instan...
2010 Dec 09
4
Sequence generation in a table
Dear R helpers I have following input f = c(257, 520, 110). I need to generate a decreasing sequence (decreasing by 100) which will give me an input (in a tabular form) like 257, 157, 57 520, 420, 320, 220, 120, 20 110, 10 I tried the following R code f = c(257, 520, 110) yy = matrix(data = NA, nrow = 3, ncol = 6) for (i in 1:3)      {      value = NULL      for (j in 1 : 6)           {
2017 Oct 26
3
How to create a table structure in Java code?
..."); Sent from [ProtonMail](https://protonmail.com), Swiss-based encrypted email. > -------- Original Message -------- > Subject: Re: [Rd] How to create a table structure in Java code? > Local Time: October 26, 2017 7:45 AM > UTC Time: October 26, 2017 11:45 AM > From: rhelp at eoos.dds.nl > To: r-devel at r-project.org > > I suspect that you are looking for something like: > > read.csv(textConnection( > "5.1,3.5,1.4,0.2,setosa > 4.9,3,1.4,0.2,setosa > 4.7,3.2,1.3,0.2,setosa > 4.6,3.1,1.5,0.2,setosa > 5,3.6,1.4,0.2,setosa" > ), heade...
2015 May 15
1
Alternative for wildcard gnu extension in Makevars
...function could generate portable >> 'Makevars(.win)' files for your package. >> >> Kevin >> >> On Wed, May 13, 2015 at 9:08 AM, G?bor Cs?rdi <csardi.gabor at gmail.com> wrote: >>> On Wed, May 13, 2015 at 12:05 PM, Jan van der Laan <rhelp at eoos.dds.nl> >>> wrote: >>> [...] >>> >>>> Too bad. Since it is only a handful of files, I will probably move them >>>> directly into the src directory and prefix them. It would have been nice to >>>> have been able to keep them separat...
2012 Jan 19
3
Not generating line chart
Hi All, Can you please help me, why this code in not generating line chart? library(ggplot2) par(mfrow=c(1,3)) #qplot(TIME1, BASCHGA, data=Orange1, geom= c("point", "line"), colour= ACTTRT) unique(Orange1$REFID) -> refid for (i in refid) { Orange2 <- Orange1[i == Orange1$REFID, ] pdf('PGA.pdf') qplot(TIME1, BASCHGA, data=Orange2, geom= c("line"),
2017 Oct 09
1
Using response variable in interaction as explanatory variable in glm crashes R
>>>>> Jan van der Laan <rhelp at eoos.dds.nl> >>>>> on Fri, 6 Oct 2017 12:13:39 +0200 writes: > It is actually model.matrix that crashes, not glm. Same > crash occurs with e.g. lm. > model.matrix(dob_mon ~ dob_day*dob_mon, data = tab) > also crashes R. Yes, segmentation fault. It...
2011 May 15
2
Unexpected behaviour as.data.frame
I use the following code to create two data.frames d1 and d2 from a list: types <- c("integer", "character", "double") nlines <- 10 d1 <- as.data.frame(lapply(types, do.call, list(nlines)), stringsAsFactor=FALSE) l2 <- lapply(types, do.call, list(nlines)) d2 <- as.data.frame(l2, stringsAsFactors=FALSE) I would expect d1 and d2 to be the
2017 Oct 26
1
How to create a table structure in Java code?
...inal Message -------- > Subject: Re: [Rd] How to create a table structure in Java code? > Local Time: October 26, 2017 10:13 AM > UTC Time: October 26, 2017 2:13 PM > From: simon.urbanek at R-project.org > To: Morkus <morkus at protonmail.com> > Jan van der Laan <rhelp at eoos.dds.nl>, r-devel at r-project.org <r-devel at r-project.org> > > You are entering the quoting hell - you are missing quotes and escapes for \n. it would be much more reasonable to use the rConnection.assign method instead of pasting any content through the parser. > > Cheers,...
2015 May 13
0
Alternative for wildcard gnu extension in Makevars
...that 'makevars()' function could generate portable > 'Makevars(.win)' files for your package. > > Kevin > > On Wed, May 13, 2015 at 9:08 AM, G?bor Cs?rdi <csardi.gabor at gmail.com> wrote: >> On Wed, May 13, 2015 at 12:05 PM, Jan van der Laan <rhelp at eoos.dds.nl> >> wrote: >> [...] >> >>> Too bad. Since it is only a handful of files, I will probably move them >>> directly into the src directory and prefix them. It would have been nice to >>> have been able to keep them separate. >>> >>...
2011 Sep 15
1
odfWeave: Combining multiple output statements in a function
What is the correct way to combine multiple calls to odfCat, odfItemize, odfTable etc. inside a function? As an example lets say I have a function that needs to write two paragraphs of text and a list to the resulting odf-document (the real function has much more complex logic, but I don't think thats relevant). My first guess would be: exampleOutput <- function() {
2017 Oct 26
0
How to create a table structure in Java code?
...onMail](https://protonmail.com), Swiss-based encrypted email. > >> -------- Original Message -------- >> Subject: Re: [Rd] How to create a table structure in Java code? >> Local Time: October 26, 2017 7:45 AM >> UTC Time: October 26, 2017 11:45 AM >> From: rhelp at eoos.dds.nl >> To: r-devel at r-project.org >> >> I suspect that you are looking for something like: >> >> read.csv(textConnection( >> "5.1,3.5,1.4,0.2,setosa >> 4.9,3,1.4,0.2,setosa >> 4.7,3.2,1.3,0.2,setosa >> 4.6,3.1,1.5,0.2,setosa >&gt...
2010 Sep 09
1
Strange output daply with empty strata
Dear list, I get some strange results with daply from the plyr package. In the example below, the average age per municipality for employed en unemployed is calculated. If I do this using tapply (see code below) I get the following result: no yes A NA 36.94931 B 51.22505 34.24887 C 48.05759 51.00198 If I do this using daply: municipality no yes
2012 Jul 17
3
complexity of operations in R
Hello! I am optimizing my code in R and for this I need to know a bit more about the internals. It would help tremendously if someone could link me to a page with O()-complexities of all the operations. In this particular case, I need something like a linked list with O(1) insertLast/First ability. I can't preallocate a vector since I do not know the final size of the list ahead of time. The
2017 Oct 06
2
Using response variable in interaction as explanatory variable in glm crashes R
The following code crashes R (I know I shouldn't try to estimate such a model; this was a bug in some code of mine). I also tried with R-devel; same result. tab <- structure(list(dob_day = c(FALSE, FALSE, FALSE, FALSE, TRUE, TRUE, TRUE, TRUE), dob_mon = c(FALSE, FALSE, TRUE, TRUE, FALSE, FALSE, TRUE, TRUE), dob_year = c(FALSE, TRUE, FALSE, TRUE, FALSE, TRUE, FALSE, TRUE), n =
2011 Nov 29
1
Read TXT file with variable separation
Hi! I have to import some TXT files into R, but the separation between the columns are made with different blank spaces, but each file use the same separation. Example: 31 104 5 0 11RUA SAO SEBASTIAO 25 BAIRRO FILETO 01
2017 Oct 25
2
How to create a table structure in Java code?
Hi all, Using RConsole, it's easy to get data from the database that you can use in an R Command. Like this: (Reference case) irisQuery <- dbGetQuery(conn, "select * from iris") boxM(irisQuery [,-5], irisQuery[,5]) ---- (Actual case this posting is about) Yet, if I'm getting that same (sample IRIS) data, say, in a web service possibly POSTED from a SQL command, that same
2017 Sep 03
2
readLines() segfaults on large file & question on how to work around
Jeroen: Thank you for pointing me to ndjson, which I had not heard of and is exactly my case. My experience: jsonlite::stream_in - segfaults ndjson::stream_in - my fault, I am running Ubuntu 14.04 and it is too old so it won't compile the package corpus::read_ndjson - works!!! Of course it does a different simplification than jsonlite::fromJSON, so I have to change some code, but