search for: abraham

Displaying 20 results from an estimated 316 matches for "abraham".

2007 Sep 01
1
why doesn't as.character of this factor create a vector ofcharacters?
...Here is a reply. When you constructed the data.frame, all strings were converted to factors. If you didn't want that, it would have been possible to specify it: df<-data.frame(a=a,b=b,c=c,stringsAsFactors=F) Then everything would work as intended: one.line<-as.character(df[df$a=="Abraham",]) Actually, the real problem is that df[df$a=="Abraham",] returns a list. There is no need to use as.character here, just unlist: one.line<-unlist(df[df$a=="Abraham",]) The returned list is also the problem with your code. If you have a data.frame with factors, the...
2004 Jul 16
12
OCFS Database too slow
...tially assumed RAC is the problem area. ( Because with both nodes enabled we had terrible performance) Hence we stopped one of the RAC Databases to test out the performance. However even with one node the performance is real bad. Any pointers on how to debug this problem. R'gds Varghese Abraham.
2007 Jul 10
1
why doesn't as.character of this factor create a vector of characters?
I'm trying to figure out why when I use as.character() on one row of a data.frame, I get factor numbers instead of a character vector. Any suggestions? See the following code: a<-c("Abraham","Jonah","Moses") b<-c("Sarah","Hannah","Mary") c<-c("Billy","Joe","Bob") df<-data.frame(a=a,b=b,c=c) #Suppose I'm interested in one line of this data frame but as a vector one.line <- df[df$a==&...
2006 Jun 13
3
Multiple lag.plots per page
...e, however the second plot replaces the first one (although it only takes up the upper half as it should): par(mfrow=c(2,1)) a<-sin(1:100) b<-cos(1:100) lag.plot(a) lag.plot(b) What's the trick to this? I'm using R 2.2.1 (2005-12-20 r36812) on Ubuntu Linux. Thanks, Gad -- Gad Abraham Department of Mathematics and Statistics University of Melbourne Victoria 3010, Australia email: g.abraham at ms.unimelb.edu.au web: http://www.ms.unimelb.edu.au/~gabraham
2004 Aug 30
2
FW: Observations
...vailable for OCFS (in normal FS, sync does a refresh of FS from kernel cache so that the FS is consistent). By this can we say that the FS shard by both nodes is consistent? Regards, Shiva -----Original Message----- From: Shivaprasad Kambalimath Sent: Monday, August 30, 2004 1:55 PM To: Varghese Abraham Subject: RE: [Ocfs-users] Observations Varghese, This means we cannot use FTP at all. Pls ask them if there are any tools/commands to do ftp. Also ask abt options of sync (in normal FS, this does a refresh of FS from cache) if anything of that sort available for OCFS. -shiva -----Original Mes...
2011 Apr 25
2
Problem installing XML in Ubuntu 10.10
...) Platform: i686-pc-linux-gnu (32-bit) I'm trying to install the XML package. However, I end up with the following error message. > install.packages("XML") .... checking for xml2-config... no Cannot find xml2-config ERROR: configuration failed for package ‘XML’ * removing ‘/home/abraham/R/i686-pc-linux-gnu-library/2.13/XML’ The downloaded packages are in ‘/tmp/RtmpUsckPl/downloaded_packages’ Warning message: In install.packages() : installation of package 'XML' had non-zero exit status When I run library(XML), I get that there is no package named XML. Can anyone help d...
2004 Oct 20
1
i-node showing 100 % used whereas the partitionsare empty
...e meanwhile , what we want to know is whether this bug is a minor bug and can be ignored for now. Does reporting 100% inodes cause any problem for the OCFS file system or can we ignore this bug and go into production. Also can you tell us by when version 14 would be released. R'gds Varghese Abraham. -----Original Message----- From: Sunil Mushran [mailto:Sunil.Mushran@oracle.com] Sent: Wednesday, October 13, 2004 5:54 PM To: Varghese Abraham Cc: ocfs-users@oss.oracle.com Subject: Re: [Ocfs-users] i-node showing 100 % used whereas the partitionsare empty File a bug on this. I think I know wha...
2006 Jun 23
2
Time series labeling with Zoo
...2006" in the middle of the x axis, with no months labelled, although there's plenty of room for labels. How do I get zoo to label the months too, without having to manually work out which day was the first day of each month? I'm using zoo 1.0-3 with R 2.2.1. Thanks, Gad -- Gad Abraham Department of Mathematics and Statistics University of Melbourne Parkville 3010, Victoria, Australia email: g.abraham at ms.unimelb.edu.au web: http://www.ms.unimelb.edu.au/~gabraham
2007 Mar 16
3
ARIMA standard error
...ot;coef" "sigma2" "var.coef" "mask" "loglik" "aic" "arma" "residuals" "call" "series" "code" "n.cond" "model" Thanks, Gad -- Gad Abraham Department of Mathematics and Statistics The University of Melbourne Parkville 3010, Victoria, Australia email: g.abraham at ms.unimelb.edu.au web: http://www.ms.unimelb.edu.au/~gabraham
2015 Jan 25
2
Regarding the Learning to Rank project
Hi, My name is Abraham and I am a 2nd year college student from Bangalore(India). I was going through your list of project ideas, and the Learning to Rank project really interested me . Unfortunately I don't really have any real experience with "Information Retrieval" and only know the basics of "Machi...
2011 Jun 10
2
Counting the Number of Letters in a row
..., "Pizza is good")) The following function gives me the number of characters in each string. So for "I live in Denver", I get 1, 4, 2, and 6. However, I want to know the total number of characters (13). sapply(strsplit(as.character(f1$keyword), " "), nchar) Thanks, Abraham [[alternative HTML version deleted]]
2004 May 31
2
shaping
...classes. That is not what I want. All I want is Cisco generic traffic shaping style shaping (or similar to how the old shaper module worked), iow I don''t want to specify how much bandwidth I have, I just want to make sure that any particular group never exceeds a given rate. -- Regards Abraham TODAY the Pond! TOMORROW the World! -- Frogs (1972) ___________________________________________________ Abraham vd Merwe - Frogfoot Networks CC 1st Floor, Albion Springs, 183 Main Road, Newlands Phone: +27 21 689 3873 Cell: +27 82 565 4451 Http: http://www.frogfoot.net/ Email:...
2007 Oct 16
2
survreg's algorithm
...rvreg() from the survival package for parametric survival regression (modelling inter-arrival times of patients to a waiting list as exponentially distributed, with various regressors such as queue size and season). Does anyone know which algorithm survreg() uses for this? Thanks, Gad -- Gad Abraham Department of Mathematics and Statistics The University of Melbourne Parkville 3010, Victoria, Australia email: g.abraham at ms.unimelb.edu.au web: http://www.ms.unimelb.edu.au/~gabraham
2012 Aug 13
3
Using the effects package to plot logit probabilities
...(response) based on income (or any of the other predictors). However, what I want to do is generate the same plot, with won don y axis and income on x axis, but the curves showing the probabilities for age and home. Not seeing how to do this in the effects documentation. Help! Thanks. -- *Abraham Mathew Statistical Analyst www.amathew.com 720-648-0108 @abmathewks* [[alternative HTML version deleted]]
2009 Mar 15
3
read.xls question
...ndia. I'm writing a paper on the relationship between economic growth and voter turnout. This is the command I use: data <- read.xls("India.xls", header=TRUE) I get the following error message: Error: could not find function "read.xls" Anyone have ideas? Thanks, Abraham
2011 Dec 15
1
Reordering a numeric variable
...lt;- "Advanced Degree" educ2[educ %in% levels(educ)[c(6,8)]] <- "Other" educ2 = factor(educ2) levels(educ2) The above code is how I regrouped the variable. How can I regroup it so that it's levels are from lowest to highest. What if they're numeric values" -- *Abraham Mathew Statistical Analyst This or That Media, Inc. abraham@thisorthat.com 720-648-0108 @abmathewks www.amathew.com * [[alternative HTML version deleted]]
2007 Jun 25
0
from Abraham Russell cheap sft
OEM software means no CD/DVD, no packing case, no booklets and no overhead cost! So OEM is synonym for lowest price. Buy directly from the manufacturer, pay for software ONLY and save 75-90%! Check discounts and special offers! Find software for home and office! TOP ITEMS Adobe Photoshop CS2 V9.0 $69 Macromedia Flash Prof 8 $49 Adobe Premiere 2.0 $59 MS Office
2007 Jun 25
0
from Abraham Russell cheap sft
OEM software means no CD/DVD, no packing case, no booklets and no overhead cost! So OEM is synonym for lowest price. Buy directly from the manufacturer, pay for software ONLY and save 75-90%! Check discounts and special offers! Find software for home and office! TOP ITEMS Adobe Photoshop CS2 V9.0 $69 Macromedia Flash Prof 8 $49 Adobe Premiere 2.0 $59 MS Office
2012 Aug 02
1
Naive Bayes in R
...:5,-3]), true=dat[1:5,3]) predict(m, dat[1:5,-3], type = "raw") So far, so good I think (???). I want to know if there is any diagnostic test to determine the overall misclassification rate of a NB classifier, and if there is a function in R that is available to implement it? Thanks, Abraham -- *Abraham Mathew Statistical Analyst www.amathew.com 720-648-0108 @abmathewks* [[alternative HTML version deleted]]
2012 Jul 19
3
Removing values from a string
...NA|insurance", "NA|auto|insurance", "<NA>")) one Can anyone point me in the right direction? I'm still not too familiar with regex or gsub to find a solution, and there doesn't seem to be anything helpful in the stringr package for this task. Thanks -- *Abraham Mathew Statistical Analyst www.amathew.com 720-648-0108 @abmathewks* [[alternative HTML version deleted]]