similar to: creating a package in R

Displaying 20 results from an estimated 13000 matches similar to: "creating a package in R"

2014 Jul 10
6
bucle
Estimados compañeros, hoy me ha surgido una duda, quizás trivial, pero que no encuentro sentido. Tengo un bucle con el siguiente código: for (i in 1:n) { if (rango_inr1[i]==1 & (inr[i]>= 2 & inr[i]<= 3)) cinr[i]<-1 if (rango_inr1[i]==2 & (inr[i]>= 2.5 & inr[i]<= 3.5)) cinr[i]<-2 if (rango_inr1[i]==3 & (inr[i]>= 2 & inr[i]<= 2.9)) cinr[i]<-3 if
2012 Aug 02
2
[PATCH] add additional checks to ext2 loader
Check if some pointers are not NULL due to read errors or other problems Signed-off-by: Frediano Ziglio <frediano.ziglio at citrix.com> --- core/fs/ext2/ext2.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/core/fs/ext2/ext2.c b/core/fs/ext2/ext2.c index bddde8d..8f0f2a4 100644 --- a/core/fs/ext2/ext2.c +++ b/core/fs/ext2/ext2.c @@ -139,6 +139,8 @@
2013 Sep 01
1
Blur and not readable text, using geom_text in ggplot
Dear R Users, I am new to ggplot. I am using geom_text to inscribe values on my ggplot but it is giving me values which are unreadable and blur. Please let me know if there is any way out. ----------------- Code ----------------- *es <- es3 + geom_text(data=tmp.cor, aes(x=2, y=min(infer.df$value),* * label=text.bottom), colour="black",* *
2005 Nov 02
2
Bug report on get.hist.quote
> get.hist.quote(instrument="INR/USD", provider="oanda", start="2005-10-20") trying URL 'http://www.oanda.com/convert/fxhistory?lang=en&date1=10%2F20%2F2005&date=11%2F01%2F2005&date_fmt=us&exch=INR&exch2=&expr=USD&expr2=&margin_fixed=0&&SUBMIT=Get+Table&format=ASCII&redirected=1' Content type
2004 Jun 21
3
[Fwd: Re: /sbin/tc does not know about HTB]
> It seems that the official place to grab the source for iproute2 is > http://developer.osdl.org/dev/iproute2/download/ but there are only > sources for 2.2 and 2.6, where are the ones for 2.4? Well I got mine from http://ftp.iasi.roedu.net/mirrors/ftp.inr.ac.ru/ip-routing/ but I didn''t even know about those 2.6 ones... I''m using the latest 2.4.7 with my 2.6.5
2004 Sep 23
3
iproute2 tool compiling problems.
Hi all. This is my first msg in this list, and I´d appreciate any help you could give me. I already compiled the kernel with the options to run iproute2 tools. But, when I download the iproute2-2.4.7-now-ss010824.tar.gz file from ftp://ftp.inr.ac.ru/ip-routing/ and try to compile it, I got too many errors. Here goes the output: server:/home/nathan/iproute2# make make[1]: Entering
2006 Mar 28
4
[ ] IProute2 error ..
Dear all, I am having problem using iproute2 on my new Slackware 10.1 box. Here goes the problem: root@localhost:~# echo "200 DOONET" >> /etc/iproute2/rt_tables root@localhost:~# cat /etc/iproute2/rt_tables # # reserved values # 255 local 254 main 253 default 0 unspec # # local # #1 inr.ruhep 200 DOONET root@localhost:~# ip rule add from 10.255.255.0/24
2004 May 20
1
iproute2 updates, anybody ?
The latest iproute2 software on its site ftp://ftp.inr.ac.ru/ip-routing/ is from 2002 iproute2-2.4.7-now-ss020116-try and even that is marked with "try" ... since then we''ve seen a lot of patches for it, some solving bugs some adding support for HTB, esfq, hfsc, wirr etc. I think, someone mentioned on this list that he has collected all the patches and updates for iproute2 ...
2005 Mar 21
1
How to do such MDS in R
i know cmdscale and isoMDS inR can do classical and non-metric MDS.but i want to konw if there is packages can carry on "individual differences scaling" and "multidimensional analysis og preference"?both method are important one,but i can not find any clue on how to do it using R. anyone can help? thank you!
2003 Mar 18
1
iproute and shorewall present but no install.
Hello, I have had a lot of success installing/configuring shorewall on my own system using webmin. Recently, I have been contracted to do some remote admin on a isp co-lo box all through a webmin server index connection from my locally running webmin server connected to the remote server. I was able to download shorewall from: http://shorewall.infohiiway.com/pub/shorewall/LATEST.rpm but when
2010 Jul 13
1
[Vulgarly-Selfish-Commercial] Project: Private Super computer (HPC) in a Private cloud
Greetings, I am atempting to build the above captioned environment. I will contribute to this list my learnings. I need income as I need to fund this project. Threre are various revenue sharing models I have in mind. One size just cant fit all after all. (angel investors or whatever, anybody)? My offer: "Every reply for this thread will get INR 11/- from me iff only I could remit my
2012 Sep 19
2
Rcmd check problem
Hi, all. I was trying to build my R package with R 2.15.1 32bit and win7. I basically follow the routine in Steven Mosher's blog http://stevemosher.wordpress.com/step-10-build/ After I fixed the path, and built the skeleton of the package, I started command prompt and used the following commands in building my package Rcmd check myPackageName Rcmd build myPackageName Rcmd check
2001 Sep 11
1
[Q] Sparse Matrices in R?
Does anyone knows if there is a way to handle sparse matrices in R? More precisely I am looking for a way to do correspondance analysis on a contingency table which is quite huge (1,000 x 10,000) but sparse (i.e. full of zero). Creating it directly in R (eg as x <- array(0,c(1000,10000) then filling the non zero cells) seems definitely not the good solution as R is then unable to process it
2006 Jun 10
1
Calculating survival for set time intervals
Hello friends and fellow R users, I have successfully tabulated and entered my survival data into R and have generated survival curves. But I would like to be able to determine what the survival rates are now at one month, three months, six months and one year. I have a data set, via.wall, which I have entered into R, and which generates the following Surv object: Surv(Days,Status==1) [1]
2020 Oct 04
1
Help in R code
Hello , i am working in the functional time series using themultivariate time series data(hourly time series data). Sir? i am usingFAR model more than one order for which no statistical package is available inR, so for this i convert my data into functional form and obtained thefunctional principle component and from those FPCA i extract theircorresponding? FPCscores. Know i use the VAR model on
2013 Mar 02
0
[GIT-PULL] ext4 inline data support
Hi, This branch contains the new ext4's inline data support which has been added recently to kernel 3.8. In addition to inline data support, there are other patches that remove trainling whitespaces and extra new lines in ext2fs code and the other adds an assert() macro to Syslinux core. I think it's worth mentioning that these changes were made against master branch.
2008 May 07
1
Ubuntu 8.04 + Astribank
I'm trying to use a Xorcom Astribank wth Ubuntu 8.04, but got no success. I can see the channel bank with lsusb, but when I tried to use zaptel_hardware, or when I try the /etc/init.d/script, they don't see my Channel Bank. I compiled the latest Zaptel 1.4.10, with Astribank's dependecies, fxload and libusb-dev. Anyone have a similiar experience ? Best Regards, -- Guilherme Loch G?es
2009 Jul 01
3
Multiple Internet facing Nics - Gateway issue
I have a server with 4 nics. Two are using different internet connections, both with static IP's, and two are connected to our private network. The two internet facing nics seem to be battling over the gateway designation. Which ever I designate as the gateway the other stops responding to incoming traffic. I need both to listen to inbound traffic. One for our main web page and the other
2014 May 29
0
[PATCH 2/2] core/fs: Add support for Unix File system 1/2.
From: Raphael S. Carvalho <raphael.scarv at gmail.com> It's already loading modules successfully, booting Linux, and both UFS version 1 and 2 seem to be working correctly. Signed-off-by: Raphael S. Carvalho <raphael.scarv at gmail.com> --- core/fs/ufs/bmap.c | 202 ++++++++++++++++++++++++++ core/fs/ufs/ufs.c | 404 ++++++++++++++++++++++++++++++++++++++++++++++++++++
2013 Jul 12
1
[PATCH 001/001] core/fs: Add support to Unix File system 1/2.
It's already loading modules successfully, and both UFS version 1 and 2 seems to be working correctly. Special thanks to Paulo Alcantara and Matt Fleming for being always ready to help me and give feedback. Signed-off-by: Raphael S.Carvalho <raphael.scarv at gmail.com> --- core/fs/ufs/bmap.c | 202 ++++++++++++++++++++++++++ core/fs/ufs/ufs.c | 404