R video tutorial number 1

[This article was first published on Decision Science News » R, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

LEARN R BY JUST WATCHING

rtut1.gif

For this week, Decision Science News has created a video tutorial on how to get started using the R Language for Statistical Computing. (The tutorial is best viewed in your browser’s full-screen mode, try pressing F11 in Windows). R is free and open source, and constantly being improved upon by countless contributors worldwide. DSN highly recommends using R.

Topics covered include:

  • Downloading and installing R in Windows
  • The R graphical user interface
  • Viewing the graphics demo
  • Vectors and basic stats
  • Simple plotting

The commands in the tutorial are:
demo(graphics)
x=c(1,2,3,4,5,6,7)
y=c(10,14,20,18,16,15,10)
x+y
z=c(x,y)
sum(y)
mean(y)
sd(y)
plot(x,y)
barplot(y,col=”lightgreen”)

Got that? Now try R video tutorial 2
See also The R Graph Gallery
Can’t view flash? Download movie. If you see no image under Windows, download the TSSC Codec.

To leave a comment for the author, please follow the link and comment on their blog: Decision Science News » R.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)