search for: rstat

Displaying 20 results from an estimated 134 matches for "rstat".

Did you mean: stat
1999 May 03
0
compilation of R-0.63.3 on alpha (PR#183)
...have applied the recommended config.site, which I enclose. As can be seen from the compilation log there are linking errors... I did a 'make check' which fails for the R binary. >make check =2E =2E =2E Building system startup profile make[7]: Leaving directory `/mn/vega/astro/local/src/rstat/R-0.63.3/src/l= ibrary /profile' make[6]: Leaving directory `/mn/vega/astro/local/src/rstat/R-0.63.3/src/l= ibrary ' make[5]: Leaving directory `/mn/vega/astro/local/src/rstat/R-0.63.3/src' make[4]: Leaving directory `/mn/vega/astro/local/src/rstat/R-0.63.3' make[3]: Leaving directo...
1999 May 03
1
problems compiling R-0.63.3 on alpha
...because this is needed explicitly for DEC cc. However, there are still a few problems when linking some of the files as you can see from the enclosed log. Ciao, Andreas ------------------------------------------------------- R-0.63.3>make make[1]: Entering directory `/mn/vega/astro/local/src/rstat/R-0.63.3/afm' make[1]: Leaving directory `/mn/vega/astro/local/src/rstat/R-0.63.3/afm' make[1]: Entering directory `/mn/vega/astro/local/src/rstat/R-0.63.3/demos' make[1]: Leaving directory `/mn/vega/astro/local/src/rstat/R-0.63.3/demos' make[1]: Entering directory `/mn/vega/astro/l...
2010 Mar 31
3
regular expression help to extract specific strings from text
Dear all, Lets say I have the following: > x <- c("Eve: Going to try something new today...", "Adam: Hey @Eve, how are you finding R? #rstats", "Eve: @Adam, It's awesome, so much better at statistics that #Excel ever was! @Cain & @Able disagree though :(", "Adam: @Eve I'm sure they'll sort it out :)", "blahblah") > x [1] "Eve: Going to try something new today..." [2] "...
2006 Feb 03
3
R-2.2.1-INSTALL Issue with TCLTK
Hi I am not able to have a working tcltk library in R-2.2.1 inspite of trying different options suggested in the FAQ's. I am using the following configure option and I do get the tcltk package installed but with a missing libs folder. ./configure -prefix= "~R-2.2.1" --enable-R-shlib --enable-linux-lfs --with-zlib --with-gnu-ld --with-tcltk
2013 May 16
2
[PATCH] virtio-net: Reporting traffic queue distribution statistics through ethtool
...netdev_priv(dev); - int cpu; + int i; unsigned int start; - for_each_possible_cpu(cpu) { - struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu); + for (i = 0; i < vi->max_queue_pairs; i++) { + struct virtnet_tx_stats *tstats = &vi->sq[i].stats; + struct virtnet_rx_stats *rstats = &vi->rq[i].stats; u64 tpackets, tbytes, rpackets, rbytes; do { - start = u64_stats_fetch_begin_bh(&stats->tx_syncp); - tpackets = stats->tx_packets; - tbytes = stats->tx_bytes; - } while (u64_stats_fetch_retry_bh(&stats->tx_syncp, start)); + start =...
2013 May 16
2
[PATCH] virtio-net: Reporting traffic queue distribution statistics through ethtool
...netdev_priv(dev); - int cpu; + int i; unsigned int start; - for_each_possible_cpu(cpu) { - struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu); + for (i = 0; i < vi->max_queue_pairs; i++) { + struct virtnet_tx_stats *tstats = &vi->sq[i].stats; + struct virtnet_rx_stats *rstats = &vi->rq[i].stats; u64 tpackets, tbytes, rpackets, rbytes; do { - start = u64_stats_fetch_begin_bh(&stats->tx_syncp); - tpackets = stats->tx_packets; - tbytes = stats->tx_bytes; - } while (u64_stats_fetch_retry_bh(&stats->tx_syncp, start)); + start =...
2009 May 14
3
Rstat e InformationBuilders
Hola, ¿qué tal? No sé si es o no noticia conocida, pero ahí va el enlace: http://www.informationbuilders.com/products/webfocus/predictivemodeling.html Y, ahora, en resumidas cuentas: una multinacional que vende herramientas de gestión ha incorporado un módulo de "análisis predictivo" construido sobre R. Poco a poco, R se hace un hueco en la empresa... Un saludo, Carlos J. Gil
2015 Feb 25
3
Rmysql
Estimados No es una pregunta, pero si una buena noticia, leí que R y mysql en windows ahora se llevan bien. https://github.com/rstats-db/RMySQL/releases/tag/v0.10 Javier Rubén Marcuzzi [[alternative HTML version deleted]]
2004 Jun 25
7
circle / oval / semicircle ?
hi: where would I find facilities to draw circles, ovals, and semicircles? (or should I construct them myself using curve?) regards, /ivo
2004 Jun 20
4
if syntax
I ran into an interesting oddity of R, if (0) { print(1); } else { print(2); } is a syntax error, while if (0) { print(1); } else { print(2); } or if (0) { print(1); } else { print(2); } is not. I presume it has to do with the duality of the newline functioning as an end of command (;) character, though it still seems a bit odd, and it took me a while to figure out
1998 Apr 18
1
R-beta: Read_Table?
Hello All ! Can anybody help me with simple question, please? I have tried to input some data to R and I use the read.table function. The exactly form that I type was: > test1 <- read.table("D:\Rstat\Work\Abt.data",header=T,sep=",") I've got the response from R: Error: "scan" can't open file The file that I specify above "Abt.data" is a standard ASCII table file with names of fields in the first line and data below. The beginning of the file looks l...
2011 Feb 11
2
fitdistr question
Hello, I tried to fit a poisson distribution but looking at the function fitdistr() it does not optimize lambda but simply estimates the mean of the data and returns it as lambda. I'm a bit confused because I was expecting an optimization of this parameter to gain a good fit... If I would use mle() of stats4 package or mle2() of bbmle package, I would have to write the function by myself
2005 Jun 10
6
us zipcode data map
i've search the email archives, searched the documention of various map packages and done an R-site search, but have been unable to find direct resources for creating maps of the US that are colored or annotated or ... by zipcode data. For example, create a map of the US and color each zipcode region by its population using two vectors z,p containing the zipcode and population,
2008 Dec 05
6
levels update
Hello, I hope this question is not too stupid. I would like to know how to update levels after subsetting data from a data.frame. df <- data.frame(factor(c("a","a","c","b","b")), c(4,5,6,7,8), c(9,1,2,3,4)) names(df) <- c("X1","X2","X3") my.sub <- subset(df, X1 == "a" | X1 == "b")
2008 Jul 17
4
REvolution computing
Hi, everybody. Sorry to bring up the subject again but I have visited the revolution computing web page, but its not clear when or what will be the new release be. Does anybody have information about that?. Does anybody know if the version that will be released will be validated?. I have been reading the previous mails about validation and I work in a Pharma company and validation is a big
2009 Feb 03
2
New York Times - R - article a fraud?
...company - to play 'R'? Check out the title: R U Ready for R? Seems to me this title was stolen from XLSolutions www.xlsolutions-corp.com and they never mentioned XLSolutions in the article! They mentioned commercial R....never mentioned R-PLUS (www.experience-rplus.com), nor RSTAT (http://random-technologies-llc.com). I attended Trevor's class and his comment on the article is alarming: ----------------------------------------------------------------------- As a long time user of S, Splus and now R, I loved the article on R until I read the paragraph on how it all sta...
2006 Aug 23
5
two density curves in one plot?
Hello, I was wondering if I can plot two curves I get from "density(data)" into one plot. I want to compare both. With the following commad, I just get one curve plotted: plot( density(mydata) ) Sorry for this stupid question but I could not find a solution until now... Antje
2016 Apr 01
3
TensorFlow in R
Hi All, I didn't have much success through my Google search in finding any active R-related projects to create a wrapper around TensorFlow in R. Anyone know if this is on the go? Thanks, Axel. [[alternative HTML version deleted]]
2018 Jan 15
1
searching co-mentor for gsoc18
Dear R community, I am in a quest for a co-mentor, expert in R, for the following GSoC18 project proposal: https://github.com/rstats-gsoc/gsoc2018/wiki/Sampling-and-volume-approximation Thank you in advance for your feedback. Best, Vissarion Fisikopoulos
2009 Jan 04
0
Rattle 2.4.0 (Data Mining GUI using R)
...Curves, and many standard plots are supported. * Export to PMML is supported for many models, allowing R (and hence Rattle) models to be readily exported to other tools (see http://www.zementis.com) * The Business Intelligence vendor, Information Builders (http://ibi.com), will soon release RStat (sharing Rattle's open source code base) for data mining within WebFocus. Models built using RStat are deployable via PMML on all WebFocus hardware platforms (over 30 hardware and operating system platforms). A complete change log is available from http://code.google.com/p/rattle/sou...