Re: [R] Hi

2017-06-05 Thread David Winsemius
> On Jun 5, 2017, at 4:33 AM, Moshe Kelner wrote: > > Hi , > > I'm asking for a way to compute the integral of: > function(x) {x*(log(x)+b)*((log(x)+b)^(a-1)-b^(a-1))/(a-1)*(b^(a-1)} Problems here ^^^-and if(a==1)-^^^---paren--^ |||

Re: [R] Hi

2017-06-05 Thread Jeff Newmiller
Your function has mismatching parentheses. I recommend using a computer algebra system like Maxima. -- Sent from my phone. Please excuse my brevity. On June 5, 2017 4:33:56 AM PDT, Moshe Kelner wrote: >Hi , > >I'm asking for a way to compute the integral of: function(x) >{x*(log(x)+b)*((log(x)

[R] Hi

2017-06-05 Thread Moshe Kelner
Hi , I'm asking for a way to compute the integral of: function(x) {x*(log(x)+b)*((log(x)+b)^(a-1)-b^(a-1))/(a-1)*(b^(a-1)} When a and b are between 1 to 10 and X is the integral parameter between 0 to 1 ' Thanks, Moshe This e-mail message may contain confidential, commercial and privileged

Re: [R] hi

2014-11-14 Thread PIKAL Petr
ka > Sent: Friday, November 14, 2014 10:20 AM > To: r-help@r-project.org > Subject: Re: [R] hi > > Thanks,Following your explanation i have through bi conductor but still > unable to figure out how to group. for the data, my data takes values > 0,1,2 hence simulating from a mu

Re: [R] hi

2014-11-14 Thread Cox Lwaka
Thanks,Following your explanation i have through bi conductor but still unable to figure out how to group. for the data, my data takes values 0,1,2  hence simulating from a multinomial distribution such as (rmultinom(10, size = 3, prob = c(0.1,0.2,0.8))) gives 10 variables from three individuals

Re: [R] hi

2014-11-13 Thread PIKAL Petr
n...@r-project.org [mailto:r-help-bounces@r- > project.org] On Behalf Of Cox Lwaka > Sent: Thursday, November 13, 2014 11:50 AM > To: r-help@r-project.org > Subject: [R] hi > > I have a bit of trouble here to program in r. I am anew user but i > really enjoy working with

[R] hi

2014-11-13 Thread Cox Lwaka
I have a bit of trouble here to program in r. I am anew user but i really enjoy working with it.I have a large number of variables in a matrix that are arranged sequentially on a line (chromosome). This order has to be maintained whatsoever. I am to develop an r algorithm that will develop group

Re: [R] Hi , Is it possible select a different number of rows by each group with R????

2014-04-24 Thread arun
Hi Marta, If your first dataset "field2" is greater than the number of rows for a particular "field1" in second dataset, this error could happen. e.g. using modified dat1: dat1 <- structure(list(field1 = 1:3, field2 = c(3L, 20L, 4L)), .Names = c("field1", "field2"), class = "data.frame", row.n

Re: [R] Hi , Is it possible select a different number of rows by each group with R????

2014-04-23 Thread arun
Hi Marta, If you need random selection, you could use: do.call(rbind,lapply(split(dat2,dat2$field1),function(x) x[sample(1:nrow(x),dat1$field2[!is.na(match(dat1$field1,x$field1))],replace=FALSE),])) A.K. On Tuesday, April 22, 2014 1:45 PM, arun wrote: Hi Marta, It's not clear whether you w

Re: [R] Hi , Is it possible select a different number of rows by each group with R????

2014-04-22 Thread arun
Hi Marta, It's not clear whether you wanted to select the first "n" rows specified by field2 in the first dataset or just random rows. ##using a modified example if my guess is correct dat1 <- structure(list(field1 = 1:3, field2 = c(3L, 6L, 4L)), .Names = c("field1", "field2"), class = "data.

Re: [R] Hi , Is it possible select a different number of rows by each group with R????

2014-04-21 Thread David Carlson
Tobeña Sent: Monday, April 21, 2014 10:08 AM To: r-help@r-project.org Subject: [R] Hi , Is it possible select a different number of rows by each group with R Hi , Is it possible select a different number of rows by each group with R I must to select different number (specific quantity in

[R] Hi , Is it possible select a different number of rows by each group with R????

2014-04-21 Thread Marta Tobeña
Hi , Is it possible select a different number of rows by each group with R I must to select different number (specific quantity in field2:Table1) of rows in each group(field1:Table2). I have these 2 tables:Table1Table2field1field2field1field3field4field51310.375SpRm12610.416667SpRm23910.45833

[R] Hi everybody, your help would be very appreciate, thanks !

2014-02-22 Thread varin sacha
Hi everybody, I have realized a multiple linear regression.  To know how well my model does in terms of prediction, I can compute prediction intervals bands and decide if they are narrow enough to be of use. If they are too wide, then they probably are not useful. Using R, I have written these

[R] hi.

2013-05-07 Thread Silvia Lucato
Breakthrough Diet Exposed: Celebrity Doctor Uncovers The "Holy Grail of Weight Loss" http://www.trainingloyalcompanions.com/yrxccw.php [[alternative HTML version deleted]] __ R-help@r-project.org mailing list h

Re: [R] Hi

2013-04-29 Thread Ben Bolker
Fatos Baruti gmail.com> writes: > > What is the entry code formula autocovariance and autocorrelation in R > program for these data? > > a<-c(2,3.5,3.5,2.2,2.2,3.3,2.5,2.5,3.2,2.5,2.5,2.7,1.7,2.7,2.9,2. 3,2.7,3,1.8,2.5,3.1,2.5,2.5,3.2,2.7,1.9,2.6,2.3,2.7,3.2, 2.2,1.5,2.3,2.6,2.5,2.9,2,2.5,2.6

[R] Hi

2013-04-29 Thread Fatos Baruti
What is the entry code formula autocovariance and autocorrelation in R program for these data? ahttps://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.

[R] Hi: Help Using Spreadsheets

2012-04-06 Thread Petr PIKAL
Hi > Hello, > > I am a new user of R and I am trying to use the data I am reading from a > spreadsheet. > I installed the xlsReadWrite package and I am able to read data from this > files, but how can I assign the colums into values? > E.g: > as I read a spreadsheet like this one: Maybe with

Re: [R] Hi

2011-12-17 Thread Uwe Ligges
On 14.12.2011 23:11, Trying To learn again wrote: Hi all, I have solved my question Output<- matrix(0, length(x), 1) for (i in 1:length(x)){ files<- paste('KT', i, '.csv', sep = '') da1<- read.csv(files) Output[i,1]<-da1[1,2] } 2 comments: 1: use seq:_along(x) rather than 1:length(

Re: [R] Hi

2011-12-14 Thread Trying To learn again
Hi all, I have solved my question Output<- matrix(0, length(x), 1) for (i in 1:length(x)){ files <- paste('KT', i, '.csv', sep = '') da1 <- read.csv(files) Output[i,1]<-da1[1,2] } 2011/12/14 Trying To learn again > Hi all, > > I have 100 csv files always with this information (I Attac

Re: [R] Hi

2011-12-14 Thread Trying To learn again
First PRoblem solved > read.csv("KT80.csv") X x 1 1 0.01331361 > I ommitt "" in calling the file name... 2011/12/14 Trying To learn again > Hi all, > > I have 100 csv files always with this information (I Attach two example > excels) > > KT80.csv contains: > ,"x" > 1,127.188

Re: [R] hi all.regarding quantile regression results..

2011-12-01 Thread R. Michael Weylandt
This really isn't the appropriate forum for most of your questions: I'd suggest you work through the Wikipedia article on quantiles regression and direct follow up to stats.stackexchange.com. As to the R question: use the predict() function. Michael On Dec 1, 2011, at 8:12 AM, narendarreddy

[R] hi all.regarding quantile regression results..

2011-12-01 Thread narendarreddy kalam
i know this is not about R. After applying quantile regression with t=0.5,0.6 on the data set WBC( Wisconsin Breast Cancer)with 678 observations and 9 independent variables(inp1,inp2,...inp9) and 1 dependent variable(op) i have got the following results for beta values. when t=0.5(median regres

Re: [R] Hi

2011-10-03 Thread chunjiang he
thanks On Fri, Sep 30, 2011 at 5:25 PM, Francois Pepin < francois.pe...@sequentainc.com> wrote: > Hi Jiang, > > where did you get that definition of the Benjamini-Hochberg correction? > That is simply not how it works. You can take a look at the original paper, > it is available online ( > http:/

Re: [R] Hi

2011-09-30 Thread Francois Pepin
Hi Jiang, where did you get that definition of the Benjamini-Hochberg correction? That is simply not how it works. You can take a look at the original paper, it is available online (http://www.math.tau.ac.il/~ybenja/MyPapers/benjamini_hochberg1995.pdf). You can also look at the p.adjust functi

[R] Hi

2011-09-30 Thread chunjiang he
Hi, There is a question that I am confused. I have a set of data like this: hsa-miR-205--GATA30.797882767 1.08E-13 hsa-miR-205--ITGB4 0.750217593 1.85E-11 hsa-miR-187--PGF0.797604155 3.24E-11 hsa-miR-205--SERPINB5 0.744124886 3.28E-11 hsa-miR-205--PBX1 0.734487224 7.89E-11 hsa-mi

[R] Hi my best freinds

2011-05-19 Thread arsalan fathi
Hi. No tired. I need the Quasi-Newton and Nelder-Mead algorithm for estimate the 3parameters function. I need really. please help me. Thanks a lot. [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat.ethz.ch/ma

[R] Hi! Help using FitARMA package in RExcel

2011-05-17 Thread Cren
Hi all :) Before posting, I used the "search" function to find a solution, but I wasn't lucky. I'm using RExcel; I've read several examples which explain how to call in RExcel an R function via =RApply(...) but I don't understand how may I include in the function several numeric arguments. Take

[R] Hi

2011-03-01 Thread preeja
Hi, I am facing problem for classification based on graph kernels. we calculated the kernel between two molecule data set.Then I am confused about classification -- View this message in context: http://r.789695.n4.nabble.com/Hi-tp3329650p3329650.html Sent from the R help mailing list archive at

Re: [R] hi have a question about merging.

2010-12-08 Thread Dieter Menne
helloR wrote: > > > this is the problem: > load this R data frame over the internet and save it to your hard drive. > http://rss.acs.unt.edu/Rdoc/library/twang/data/racepro ling.RData > ... > > please show how to save a dataset of males only (the variable male=1) to a > new dataframe. Then do

Re: [R] hi have a question about merging.

2010-12-08 Thread Santosh Srinivas
December 2010 09:02 To: r-help@r-project.org Subject: [R] hi have a question about merging. this is the problem: load this R data frame over the internet and save it to your hard drive. http://rss.acs.unt.edu/Rdoc/library/twang/data/racepro ling.RData please show how to save a dataset of males

Re: [R] hi have a question about merging.

2010-12-08 Thread Joshua Wiley
Hi, Just as a note, it is preferred that you use plain text rather than rich text or html emails for this list. On Wed, Dec 8, 2010 at 7:32 PM, tanzia chaudhury wrote: > > this is the problem: > load this R data frame over the internet and save it to your hard drive. > http://rss.acs.unt.edu/Rdo

[R] hi have a question about merging.

2010-12-08 Thread tanzia chaudhury
this is the problem: load this R data frame over the internet and save it to your hard drive. http://rss.acs.unt.edu/Rdoc/library/twang/data/racepro ling.RData please show how to save a dataset of males only (the variable male=1) to a new dataframe. Then do the same thing for females (male=0). T

Re: [R] Hi!

2010-08-11 Thread Ben Bolker
leepama hanmail.net> writes: > I found some amazing package called "lqa" [enthusiasm snipped] > Can I use this package in linaer model(not GLM)? It's helpful to use informative subject lines in your posts to the list. A linear model is a special case of a generalized linear model with fami

[R] Hi!

2010-08-11 Thread leepama
I found some amazing package called "lqa" one question!!! Can I use this package in linaer model(not GLM)? -- View this message in context: http://r.789695.n4.nabble.com/Hi-tp2321809p2321809.html Sent from the R help mailing list archive at Nabble.com.

Re: [R] hi!! please help me!

2010-08-06 Thread Stefan Grosse
Am 06.08.2010 07:31, schrieb leepama: > > I made some anonymous function which performs some process in matlab code.. > But I want to perform it in R program... > Is there any method??? You have already got answers to this. Please read the posting guide and please stop using an unspecific subject

Re: [R] hi!! please help me!

2010-08-06 Thread Sarah Goslee
Didn't we just go through this? In general, you need to translate your matlab code into R. There are some good R-octave equivalence guides online that will help you with that task. In specific, you need to read the posting guide and ask an answerable question. Sarah On Fri, Aug 6, 2010 at 1:31

[R] hi!! please help me!

2010-08-05 Thread leepama
I made some anonymous function which performs some process in matlab code.. But I want to perform it in R program... Is there any method??? -- View this message in context: http://r.789695.n4.nabble.com/hi-please-help-me-tp2315919p2315919.html Sent from the R help mailing list archive at Nabble.

Re: [R] hi!!! guestion!!

2010-08-03 Thread Dennis Murphy
Hi: In addition to the previous replies, there is package R.Matlab and a Matlab/R reference at CRAN by David Hiebeler under Contributed Documentation. HTH, Dennis On Mon, Aug 2, 2010 at 6:57 PM, leepama wrote: > > I made some matlab codes... > > Is there any method to perform matlab codes in R

Re: [R] hi!!! guestion!!

2010-08-03 Thread David Winsemius
On Aug 2, 2010, at 9:57 PM, leepama wrote: I made some matlab codes... Is there any method to perform matlab codes in R program?? Octave/Matlab equivalencies: http://cran.r-project.org/doc/contrib/R-and-octave.txt http://rosettacode.org/wiki/Main_Page David Winsemius, MD West Hartfor

Re: [R] hi!!! guestion!!

2010-08-03 Thread Gabor Grothendieck
On Mon, Aug 2, 2010 at 9:57 PM, leepama wrote: > > I made some matlab codes... > > Is there any method to perform matlab codes in R program?? There is an Octave/R lexicon here: http://cran.r-project.org/doc/contrib/R-and-octave.txt There are also ROctave and R.matlab packages on Omegahat alt

Re: [R] hi!!! guestion!!

2010-08-03 Thread jim holtman
Translate the matlab code to the appropriate R expressions. On Mon, Aug 2, 2010 at 9:57 PM, leepama wrote: > > I made some matlab codes... > > Is there any method to perform matlab codes in R program?? > -- > View this message in context: > http://r.789695.n4.nabble.com/hi-guestion-tp2311219p231

[R] hi!!! guestion!!

2010-08-03 Thread leepama
I made some matlab codes... Is there any method to perform matlab codes in R program?? -- View this message in context: http://r.789695.n4.nabble.com/hi-guestion-tp2311219p2311219.html Sent from the R help mailing list archive at Nabble.com. __ R-hel

Re: [R] hi!! please help me

2010-07-30 Thread Stefan Grosse
On Fri, 30 Jul 2010 18:59:50 -0700 (PDT) leepama wrote: L> please give me answer! Please do your homework yourself and PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. Thanks Stefan _

[R] hi!! please help me

2010-07-30 Thread leepama
If xj=Z1+0.1e j=1,2,315 Z1~N(0,1) e~iid N(0,1) Z1 and e independent... In this model xj has pairwise correlation 0.99 Is it true?? If true..how to generate xj? please give me answer! -- View this message in context: http://r.789695.n4.nabble.com/hi-please-help-me-tp2308631p2308631.html

Re: [R] hi! l have a question please help me

2010-07-30 Thread leepama
hey!!! this is not classroom homework!! To do main programming, I find some good training problems in paper... I tried to do that...but failed so please help me Nobody help me...I relly don't know how to perform this... If you solve this probelm,I will study your work to solve main pro

Re: [R] hi! l have a question please help me

2010-07-30 Thread Tal Galili
Then please read this: http://www.r-project.org/posting-guide.html *Basic statistics and classroom homework:* R-help is not intended for these. If you want learning materials for R you can check out: http://stats.stackexchange.com/questions/138/resources-for-learning-r And: http://www.r-statistic

Re: [R] hi! l have a question please help me

2010-07-30 Thread leepama
yes!! I join group study that study R-programming... so I really tried..only to fail and made many erros.. I really don't know how to perform this... -- View this message in context: http://r.789695.n4.nabble.com/hi-l-have-a-question-please-help-me-tp2307569p2308091.html Sent from the R hel

Re: [R] hi! l have a question please help me

2010-07-30 Thread Tal Galili
Is this a question from your homework? Contact Details:--- Contact me: tal.gal...@gmail.com | 972-52-7275845 Read me: www.talgalili.com (Hebrew) | www.biostatistics.co.il (Hebrew) | www.r-statistics.com (English) --

[R] hi! l have a question please help me

2010-07-29 Thread leepama
1) dmatrix1<-function(n,p,rho,sigma,k){ muvec1=zeros(1,p) truep<-as.matrix(c(3,1.5,0,0,2,0,0,0)) A=eye(p) for(i in 1:p){ for(j in 1:p){ A[i,j]=rho^(abs(i-j)) X=mvrnorm(n,muvec1,A) y=X%*%truep+as.matrix(rnorm(n,0,sigma)) Y=X[1:k,] w=y[1:k] Z=X[(k+1):n,] z=y

Re: [R] hi... problems about adjacency matrix

2010-07-08 Thread Steve Lianoglou
Hi Gina, On Thu, Jul 8, 2010 at 6:33 AM, Gina Liao wrote: > > Dear all, > Hi, I have the problems about converting the matrix to adjacency > matrix.Here's my example, >          a            b               c                d                 e     >           fa 1.000 0.4048823682 0.1228531

Re: [R] hi... problems about adjacency matrix

2010-07-08 Thread Ted Harding
On 08-Jul-10 10:33:56, Gina Liao wrote: > Dear all, > Hi, I have the problems about converting the matrix to adjacency > matrix.Here's my example, > ab cd > e fa 1.000 0.4048823682 0.1228531 0.49046991 > 0.494515886

[R] hi... problems about adjacency matrix

2010-07-08 Thread Gina Liao
Dear all, Hi, I have the problems about converting the matrix to adjacency matrix.Here's my example, ab cd e fa 1.000 0.4048823682 0.1228531 0.49046991 0.4945158868 0.307443317b 0.4048824 1.00 0.436747

Re: [R] Hi

2010-03-04 Thread Dieter Menne
hussain abu-saaq wrote: > > ... > y = fminsearch('pbond',.15,options,p,c,nofcup,delta/epsilon); > Check documentation on "optim". There are several method available, SANN probably is the most robust if you really need gradient-free methods such as in fminsearch. Dieter -- View this messag

Re: [R] Hi

2010-03-04 Thread Rob Forler
a quick google of "fminsearch in R" resulted in this http://www.google.com/search?q=fminsearch+in+R&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a take a look. there appears to be a function called optim that you can look at http://sekhon.berkeley.edu/stats/html/optim.htm

Re: [R] Hi

2010-03-04 Thread stephen sefick
I would help, but I don't know matlab. Stephen On Thu, Mar 4, 2010 at 2:50 PM, hussain abu-saaq wrote: > > How Can I write this this matlab code in R: > > > options=optimset('TolFun',1e-9,'TolX',1e-9,'MaxIter',1e8,'MaxFunEvals',1e8); > c=c/2; > [alpha, delta, epsilon, nofcup] = ustrs(set_date,ma

[R] Hi

2010-03-04 Thread hussain abu-saaq
How Can I write this this matlab code in R: options=optimset('TolFun',1e-9,'TolX',1e-9,'MaxIter',1e8,'MaxFunEvals',1e8); c=c/2; [alpha, delta, epsilon, nofcup] = ustrs(set_date,mat_date); y = fminsearch('pbond',.15,options,p,c,nofcup,delta/epsilon); y = 200*y; Note pbond is a function in Mat

Re: [R] Hi problem with read.csv

2010-02-08 Thread Dieter Menne
dvkirankumar wrote: > > I am getting problem with "read.csv()" > > ... > but if I am converting those files to "UTF-8" formate and after > loading > to R-project Object and again I checked for > coloumn names then its giving like > ... > "ï..FILEID" > > Add fileEncoding="UTF-8" Die

[R] Hi problem with read.csv

2010-02-08 Thread venkata kirankumar
Hi all, I am getting problem with "read.csv()" command the problem is I have one file which is saved in "ANSI" while I am trying to open with R-Project its opend and all the cloumn names are comming proper like for the command names(kk) "FILEID" "UNIQUEID""LATESTFLG" "AC

Re: [R] hi there!

2009-12-06 Thread milton ruser
Hi Dave, May be a good idea you (1) use subjects avoiding "help", "Hi there", "problem", etc. The list is archived for future search, and nobody with problems with MCMC, Metropholis Hasting algorithm will search "Hi there"; (2) how about minimum reproducible problem? If you are needing use this ki

[R] hi there!

2009-12-06 Thread dave dan
hi there! how u doin?...hope fine. look, i've a difficulty in simulation especially for the bayesian analysis using R. Using the famous Markov Chain Monte Carlo (MCMC) method, Methropolis hasting algorithm i want to simuate different distrbution like: 1/ Weibull-exponential 2/Gamma-Gamma 3/Poisson-

[R] Hi

2009-09-17 Thread MOKGATLHE, L.L. (DR.)
Can I run a lack-of-fit test using R? How do I do that? Thank you [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org

[R] Hi, a problem in using SNR

2009-08-16 Thread Gina Liao
Hello All, I'm going to select the differentially genes from my array by using SNR. There are two conditions:condition1:mean(group1)>mean(group2)condition2:mean(group1)https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and pr

Re: [R] hi, i have a problem in R

2009-08-06 Thread Jim Lemon
Hi vie, I've inserted comments within your message below. Gina Liao wrote: Hi, I'm new to R language. There is a problem I couldn't understand. Hope you can answer my question. when i type for (i in 1:10){ + print(sample(9,4,replace=T)) +} The above produces 10 ve

Re: [R] hi, i have a problem in R

2009-08-05 Thread Steve Lianoglou
Hi Gina, On Aug 5, 2009, at 11:25 PM, Gina Liao wrote: Hi, I'm sorry i didn't say clearly. for (i in 1:10){ + print(sample(9,4,replace=T)) + } [1] 2 5 5 2 [1] 6 2 1 5 [1] 9 5 9 7 [1] 2 6 4 1 [1] 8 5 4 5 [1] 6 2 3 7 [1] 6 1 7 3 [1] 9 5 4 7 [1] 6 4 8 5 [1] 1 5 6 3 I mean when it s

Re: [R] hi, i have a problem in R

2009-08-05 Thread Gina Liao
Hi, I'm sorry i didn't say clearly. >for (i in 1:10){ + print(sample(9,4,replace=T)) + } [1] 2 5 5 2 [1] 6 2 1 5 [1] 9 5 9 7 [1] 2 6 4 1 [1] 8 5 4 5 [1] 6 2 3 7 [1] 6 1 7 3 [1] 9 5 4 7 [1] 6 4 8 5 [1] 1 5 6 3 I mean when it shows these reults. Then, what should I do to show the top

Re: [R] hi, i have a problem in R

2009-08-05 Thread Nordlund, Dan (DSHS/RDA)
> -Original Message- > From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On > Behalf Of Gina Liao > Sent: Wednesday, August 05, 2009 7:15 AM > To: r-h...@stat.math.ethz.ch > Subject: [R] hi, i have a problem in R > > > Hi, I'm ne

[R] hi, i have a problem in R

2009-08-05 Thread Gina Liao
Hi, I'm new to R language. There is a problem I couldn't understand. Hope you can answer my question. when i type >for (i in 1:10){ + print(sample(9,4,replace=T)) +} and it shows ten of four numbers and how do I do to calculate the frequencies in each list? I know there is

Re: [R] hi friends, is there any wait function in R

2009-07-15 Thread Petr PIKAL
Hi deepak m r napsal dne 14.07.2009 16:07:16: > Hi, >I am not an expert to debug the R can u please help. > best regards > deepak See fortune("brain") You does not need to debug R. I believe R-Core will do it for you (If you really find some bug in R, which seems to be highly improbable).

Re: [R] hi, how can we avoid maskiing error in R

2009-07-14 Thread Steve Lianoglou
I wrote a script in which there is a for group, In that for loop i am For group? Did you mean loop there, also? reading 4 files and plotting. while plotting it shows previous variable is masking like that it is showing. Can you just paste your code into an email? It might be easier to see

Re: [R] hi, how can we avoid maskiing error in R

2009-07-14 Thread deepak m r
I wrote a script in which there is a for group, In that for loop i am reading 4 files and plotting. while plotting it shows previous variable is masking like that it is showing. On Tue, Jul 14, 2009 at 1:05 PM, Charles C. Berry wrote: > On Tue, 14 Jul 2009, deepak m r wrote: > >> Hi, >>  How can

Re: [R] hi, how can we avoid maskiing error in R

2009-07-14 Thread Charles C. Berry
On Tue, 14 Jul 2009, deepak m r wrote: Hi, How can we avoid masking variable in R Scripting. It really isn't clear what you are asking. Please follow the suggestions in the Posting Guide to frame a better question. Guessing what your issue might be, I suggest you consult ?confli

[R] hi, how can we avoid maskiing error in R

2009-07-14 Thread deepak m r
Hi, How can we avoid masking variable in R Scripting. best regards deepak __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide comment

Re: [R] hi friends, is there any wait function in R

2009-07-14 Thread deepak m r
hi, first plot command and legend commands are working but lines command is not working i dont know how it happening so. can u please help. best regards deepak On Tue, Jul 14, 2009 at 10:32 AM, Duncan Murdoch wrote: > On 7/14/2009 10:07 AM, deepak m r wrote: >> >> Hi, >>   I am not an expert to

Re: [R] hi friends, is there any wait function in R

2009-07-14 Thread Duncan Murdoch
On 7/14/2009 10:07 AM, deepak m r wrote: Hi, I am not an expert to debug the R can u please help. No, because you haven't given us anything to work with. Simplify your example to something we can run, explain what you see and what you think you should see, and then maybe one of us could h

Re: [R] hi friends, is there any wait function in R

2009-07-14 Thread deepak m r
Hi, On Tue, Jul 14, 2009 at 9:38 AM, Duncan Murdoch wrote: > On 7/14/2009 8:56 AM, deepak m r wrote: >> >> Hi, >>    Empty plot is getting i dont know why. can u please clarify how >> can i use Print function instead of plot function. > > You need print() if you are using grid-based graphics (lat

Re: [R] hi friends, is there any wait function in R

2009-07-14 Thread deepak m r
Hi, I am not an expert to debug the R can u please help. best regards deepak On Tue, Jul 14, 2009 at 10:06 AM, deepak m r wrote: > Hi, > > > On Tue, Jul 14, 2009 at 9:38 AM, Duncan Murdoch wrote: >> On 7/14/2009 8:56 AM, deepak m r wrote: >>> >>> Hi, >>>    Empty plot is getting i dont know why

Re: [R] hi friends, is there any wait function in R

2009-07-14 Thread Duncan Murdoch
On 7/14/2009 8:56 AM, deepak m r wrote: Hi, Empty plot is getting i dont know why. can u please clarify how can i use Print function instead of plot function. You need print() if you are using grid-based graphics (lattice, ggplot2,...) in a script. You are using classic graphics so it sho

Re: [R] hi friends, is there any wait function in R

2009-07-14 Thread deepak m r
Hi, where can i use this par(ask=TRUE) function i tried before dev.off() code but it is again the same. best regards, Deepak On Tue, Jul 14, 2009 at 8:56 AM, deepak m r wrote: > Hi, >    Empty plot is getting i dont know why. can u please clarify how > can i use Print function instead of plot fu

Re: [R] hi friends, is there any wait function in R

2009-07-14 Thread deepak m r
Hi, Empty plot is getting i dont know why. can u please clarify how can i use Print function instead of plot function. best regards deepak On Tue, Jul 14, 2009 at 7:48 AM, Petr PIKAL wrote: > Hi > > For this type of problems I do multipage pdf. > > pdf("file", ) > for (i in ...) { > do all

Re: [R] hi friends, is there any wait function in R

2009-07-14 Thread ONKELINX, Thierry
an: r-help@r-project.org Onderwerp: [R] hi friends, is there any wait function in R hi, is there any wait function in R. I am running one R script to plot many graphs it is in the for loop. its showing no error but its not plotting well I think i can solve this problem with a wait function. P

[R] hi friends, is there any wait function in R

2009-07-14 Thread deepak m r
hi, is there any wait function in R. I am running one R script to plot many graphs it is in the for loop. its showing no error but its not plotting well I think i can solve this problem with a wait function. Please help me in this regards. If u need any clarification about programme. u can find

[R] Hi Friends

2009-07-10 Thread deepak m r
Hi, Can u please help me to cleaning my R History. I will be very greatful to u if u r helping in this regards. best regards, Deepak.M.R PhD Student Department of Computer Science University of Bologna Italy __ R-help@r-project.org mailing list https

Re: [R] Hi Friends

2009-07-10 Thread Jim Lemon
deepak m r wrote: Hi, Can u please help me to cleaning my R History. I will be very greatful to u if u r helping in this regards. Hi Deepak, Do you mean deleting the .Rhistory file in the directory in which you run R? Jim __ R-help@r-project.

Re: [R] Hi Friends

2009-07-10 Thread deepak m r
Hi,   Can u please help me to cleaning my R History.  I will be very greatful to u if u r helping in this regards. best regards, Deepak.M.R PhD Student Department of Computer Science University of Bologna Italy __ R-help@r-project.org mailing lis

Re: [R] Hi Friends

2009-07-10 Thread deepak m r
Hi, Can u please help me to cleaning my R History. I will be very greatful to u if u r helping in this regards. best regards, Deepak.M.R PhD Student Department of Computer Science University of Bologna Italy __ R-help@r-project.org mailing list https:

Re: [R] Hi

2009-06-15 Thread Henrique Dallazuanna
You can use (*)apply functions: sapply(paste("V1 ~", names(dat)[2:5]), function(f)coef(lm(as.formula(f), data = dat))) Where V1 is your first column and dat is your data.frame object. On Mon, Jun 15, 2009 at 6:42 PM, Oscar Bayona wrote: > Hi I have a simple question. I want to run a "n times"

Re: [R] Hi

2009-06-15 Thread Chuck Cleland
On 6/15/2009 5:42 PM, Oscar Bayona wrote: > Hi I have a simple question. I want to run a "n times" a simple linear > regession and save beta in a matrix but I´m not able. > > Imagine: > > Data.txt is a 10*5 file and want to run 4 different stimations always > regressing first column on the rest.

[R] Hi

2009-06-15 Thread Oscar Bayona
Hi I have a simple question. I want to run a "n times" a simple linear regession and save beta in a matrix but I´m not able. Imagine: Data.txt is a 10*5 file and want to run 4 different stimations always regressing first column on the rest. So I try this: First I run Data on memory This is my

[R] Hi, I'm working with custom slides(Cy5) and worki...

2009-03-12 Thread david david
Hi, I'm working with custom slides(Cy5) and working in the normalization of the arrays. I have three arrays (technical replicates). I have sucesfully normalized the data using vsn, however i would like to compare it to the normalization using spike in controls. My controls are annotated as cont

Re: [R] Hi, Coding problem

2009-02-26 Thread Greg Snow
boun...@r- > project.org] On Behalf Of Ssophia > Sent: Wednesday, February 25, 2009 7:28 PM > To: r-help@r-project.org > Subject: [R] Hi, Coding problem > > > > Hi, there > > > > Below is my code to one Homework question. I couldn't come up with >

Re: [R] Hi, Coding problem

2009-02-26 Thread Uwe Ligges
Ssophia wrote: Hi, there Below is my code to one Homework question. I couldn't come up with the reasonable answer. PLEASE do read the posting guide http://www.R-project.org/posting-guide.html could you please help me to figure out what is t

[R] Hi, Coding problem

2009-02-25 Thread Ssophia
Hi, there Below is my code to one Homework question. I couldn't come up with the reasonable answer. could you please help me to figure out what is the problem with my code? thank you Question is Coding P{X=j} =(1/2)^(j+1) + (1/2) *2^(j-1)/3^j my code is sim <-

[R] hi i have a problem with implementing R-Project in C#

2009-01-06 Thread venkata kirankumar
Hi, This is Kiran I tried to work on r-project through C#.Net While calling the r-project I got an error that *System.Runtime.InteropServices.COMException(0x80040013):Exception from HRESULT:0x80040013 at STATCONNECTORSRVLib.StatConnectorClass.Init(String bstrConnectorName) at IAG.RD.RcomWra

[R] hi I have a problem with implementing R-project

2009-01-06 Thread kiran kumar
Hi, This is Kiran I tried to work on r-project through C#.Net While calling the r-project I got an error that *System.Runtime.InteropServices.COMException(0x80040013):Exception from HRESULT:0x80040013 at STATCONNECTORSRVLib.StatConnectorClass.Init(String bstrConnectorName) at IAG.RD.RcomWra

Re: [R] HI

2008-09-17 Thread nalluri pratap
If you have read the table as a data frame say, DF then the following should work   DF[DF==0]<-NA --- On Tue, 16/9/08, Amit Patel <[EMAIL PROTECTED]> wrote: From: Amit Patel <[EMAIL PROTECTED]> Subject: [R] HI To: r-help@r-project.org Date: Tuesday, 16 September, 2008, 7:02

Re: [R] HI

2008-09-16 Thread Nutter, Benjamin
ect: [R] HI Does anyone know an easy way to convert all the zero values in a imported csv table into NA's [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE

Re: [R] HI

2008-09-16 Thread Marc Schwartz
on 09/16/2008 09:20 AM [EMAIL PROTECTED] wrote: >>> Does anyone know an easy way to convert all the zero values in a >> imported csv table into NA's >> >> Depends on the data structure you gave your imported table. In a >> single numeric vector (named, say, vec), the syntax is >> >> is.na(vec[vec

Re: [R] HI

2008-09-16 Thread Richard . Cotton
> > Does anyone know an easy way to convert all the zero values in a > imported csv table into NA's > > Depends on the data structure you gave your imported table. In a > single numeric vector (named, say, vec), the syntax is > > is.na(vec[vec==0]) <- TRUE That throws errors for me. An altern

Re: [R] HI

2008-09-16 Thread Johannes Huesing
Amit Patel <[EMAIL PROTECTED]> [Tue, Sep 16, 2008 at 03:32:01PM CEST]: > Does anyone know an easy way to convert all the zero values in a imported csv > table into NA's Depends on the data structure you gave your imported table. In a single numeric vector (named, say, vec), the syntax is is.na(

[R] HI

2008-09-16 Thread Amit Patel
Does anyone know an easy way to convert all the zero values in a imported csv table into NA's [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the pos

  1   2   >