Data Intelligence, Business Analytics
Permalink Reply by Triveni Hiremath on January 6, 2011 at 4:25am hi,
i am a new learner of R, i am very new to this.. i have downloaded latest version from CRAN website....i got the online manual and other help.. but not not sure about where to start from...please anyone advice me, how to learn the coding.
Do i need to learn S language before starting work on R?
How to import data from txt, sas or other datasets ?
Thanks in Advance for ur help
You do not need to learn S. R is essentially a derivative work of S.
Some suggestions on getting started with R is to follow some online tutorials that uses sample code snippets.
http://socserv.mcmaster.ca/jfox/Courses/UCLA/index.html
http://wiki.math.yorku.ca/index.php/R:_Getting_startedhttp://zoonek2.free.fr/UNIX/48_R/all.html
This will get you acquainted with the R format and programming domain. The idea is that you get familiar with the nuances of R.
Open up the console and follow along with some of those scripts. Once you get familiar with some of the basic usage and functions of R I suggest getting an R Reference Card. My favorite is Tom Short's Reference Card
http://cran.r-project.org/doc/contrib/Short-refcard.pdf
Then I would suggest finding out specifics about R that you want to use it for. Use the handy R meta-search site Rseek to search for topics related to R.
Here you can find many statistical and optimization topics related to R. Look over the Task Views to see which packages in R that may be suited for your needs.
Lastly I recommend getting involved in the R online community. R-bloggers.com is an excellent site that aggregates a bunch of people that blog about R. It is a wealth of information about R topics and usage.
Permalink Reply by Gene Leynes on January 6, 2011 at 11:04am
I agree with Larry, and he posted some things that were new to me.
My list:
QuickR: (free)
http://www.statmethods.net/index.html
IcebreakR: (free)
http://cran.r-project.org/doc/contrib/Robinson-icebreaker.pdf
Tom Short's Reference Card: (free)
http://cran.r-project.org/doc/contrib/Short-refcard.pdf
R In a Nutshell:
http://oreilly.com/catalog/9780596801717
Also anything authored by John Fox.
When you have a question search the R help archive.
http://r-project.markmail.org/
If you can't find the answer, try this: Write the question out, and create an example. In that process I usually find a better way to search for the answer, or find the answer. If you don't find an answer, then it's time to post the question to the group.
When you're frustrated by the R Gui in a few months, then explore the Eclipse plug in.
Permalink Reply by Mary Ellen Gordon on January 6, 2011 at 11:40am
Permalink Reply by Triveni Hiremath on March 9, 2011 at 2:41am hi Mary, hope you are doing great.
my R is nt reading excel files, shows package does not exist, which is the package i need to use in order to read and edit data from excel files .
please guide on this
Permalink Reply by Triveni Hiremath on January 7, 2011 at 5:16am Jeromy Anglin's blog has a great compilation of R learning links. Some with videos.
http://jeromyanglim.blogspot.com/2009/06/learning-r-for-researchers...
http://jeromyanglim.blogspot.com/2010/05/videos-on-data-analysis-wi...
Permalink Reply by Triveni Hiremath on March 11, 2011 at 1:06am thank you Larry,
i installed additional packages after downloading zip folders to my library.
to read excel file, i converted it to csv and then used usual read.csv() code.
> install.packages("Rcmdr",dependencies=TRUE)
where dependencies=TRUE ensures that any packages that Rcmdr depends on are also installed.To use a package you have installed, either use the Packages-->Load package menu item or type library(pkgname), where pkgname is the name of the package.
http://www.stat.sfu.ca/~mcneney/R/
© 2013 AnalyticBridge.com is a subsidiary and dedicated channel of Data Science Central LLC