search for: hints_r_begin

Displaying 8 results from an estimated 8 matches for "hints_r_begin".

2010 Mar 07
1
Some hints for the R beginner
There is now a document called "Some hints for the R beginner" whose purpose is to get people up and running with R as quickly as possible. Direct access to it is: http://www.burns-stat.com/pages/Tutor/hints_R_begin.html JRR Tolkien wrote a story (sans hobbits) called 'Leaf by Niggle' that has always resonated with me. I offer you an imperfect, incomplete tree (but my roof is intact). Suggestions for improvements are encouraged. -- Patrick Burns pburns at pburns.seanet.com http://www.burns-stat.c...
2010 Nov 23
2
Calculating correlation
Hi guys I have an input file with multiple columns and and rows. Is it possible to calculate correlation of certain value of certain No (For example x of S1 = 112) with all other values (for example start with x 112 corr a 3 of S1 = x-a 0.2 ) INPUT ******* No S1 S2 S3 S4 Sn a 3 4 45 34 23 x 112 0 12 23 0 b 0 1 23 12 1 n 0 1 0 1 1
2012 May 30
3
R learning
Hi, What is quickest way to learn R? I am unnecessarily having fear of learning R. rgds Parag Kulkarni Haridwar,India -- View this message in context: http://r.789695.n4.nabble.com/R-learning-tp4631814.html Sent from the R help mailing list archive at Nabble.com.
2010 Nov 17
2
help on IDE
I am new comer in R.There r few IDE like Tinn R,VIM etc.I mean How to use them? Do I need to install R and then install them to use or they can work alone? Also does one install packages on R or IDEs? Can I call/use the package from IDEs? regards Parth -- Socrates, proclaimed: "I came to know one thing; that I know nothing".
2012 May 15
4
reading data into R
Hi I am really new using R, so this is really a beginner stuff! I created a very small data set on excel and then converted it to .csv file. I am able to open the data on R using the command "read.table ("mydata1.csv", sep=",", header=T)" and it just works fine. But when I want to work on the data (e.g. calculate the mean of variable "X") R says
2010 Oct 23
4
Feedback on you manual
Dear Sir/Madam: Great thanks for R project and you contribution. I am Liping Liu, a beginner of R. Recently, I use R much. I wish you could improve the manual by making it search engine friendly. The "Introduction to R" page is too long. I am often redirected to this page by goole, but I still can not find the content I need easily. Could you please make it a structured: one page
2010 Mar 12
5
Help on getting help from manuals
Hi, A number of people have suggested "I read the manuals"... Could someone help me by telling me where the primary start point is please? For example, I am interested in writing functions with variable number of arguments - where should I start to look? "An introduction to R" only show a brief example - with no pointer to where to find further data. I can't do ?xxx
2010 Dec 15
3
Applying function to a TABLE and also "apply, tapply, sapply etc"
Dear R-help forum members, Suppose I have a data-frame having two variables and single data for each of them, as described below. variable_1           variable_2         10                          20 I have written a function, say, 'fun' which uses input 10 and 20 and gives me desired result. fun = function(X, Y)          {          X + Y              #( I am just giving an example of