Authors

prasoonsharma 38

Social Network Analysis using R and Gephis Latest

28.04.2010

After learning the basics of R, I decided to learn something harder last week. I picked Social Network Analysis (SNA) to learn the concepts of SNA and R. My primary interest in SNA is visual exploration of networks, so I needed to find a tool...

5053 sym 8 img

Lesson 1.1 Latest

27.01.2021

Statistics is the science of collecting data, organizing and summarizing data and drawing conclusions from data. There are two main branches of statistics: descriptive statistics and inferential statistics. Descriptive statistics focus on...

7434 sym 1 tbl

Tony Cookson 38

How to read and write Stata data (.dta) files into R Latest

24.02.2011

Here’s an R tutorial where I explain how to read Stata data files into R (even if you don’t own the program Stata). I also offer some other basic tips.Of note, you can also write Stata .dta files from R (if your coauthors or...

1021 sym 8 img

Todos Logos 38

Useful Links Latest

09.07.2009

Statistic on WikiPediaR homepageR download (first select the mirror)Blogs on R:Revolutions R BlogR bloggersPlanet RQuick-ROne R tip a dayData Mining With Rattle and RAniWikiR Graph GalleryR Tips / StatsRusRomain Francois blog“R” you...

683 sym 2 img

shibatau 38

Likert_sample1 Latest

21.01.2021

R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. When you click the Knit button a document will...

594 sym R (262 sym/2 pcs) 1 img

Rick Reneau 38

RE Individual Differences Latest

02.07.2020

## ## Attaching package: 'lubridate' ## The following object is masked from 'package:base': ## ## date Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot. ## Linear...

144 sym R (36862 sym/20 pcs) 19 img

Jamal Rogers 38

Combinatorics using R Latest

11.11.2022

Using the combinat Package Download the combinat package from CRAN using RStudio or the install.packages() command. Then load the combinat library. library(combinat) ## ## Attaching package: 'combinat' ## The following object is masked from...

905 sym R (1434 sym/24 pcs) 1 img

Shravan Vasishth 38

How to get ESS style indentation in textmate Latest

23.04.2009

This should be standard in Textmate, I don’t know why one has to go through so many steps to get it working:http://gragusa.wordpress.com/2007/11/11/textmate-emacs-like-indentation-for-r-files/ Related To leave a comment for the...

630 sym

Taha Ahmad 38

DATA607 Week 1 Assignment Latest

29.01.2023

Introduction As a previous and current college-goer, it would make sense if I had exposure to college fight songs. However, I can not remember a single word of the fight song of a college that I have gone to. This is why the data...

2668 sym

Renida Kasa 38

R Bridge Course HW1 Latest

16.07.2023

#1 - Loop for 12! #2 - Vector including 20-50 by 5 x<-seq(20,50,by=5) x ## [1] 20 25 30 35 40 45 50 #3 - Quadratic Formula quadForm=function(a,b,c){ x1=-(b-sqrt(b^2-4*a*c))/(2*a) x2=-(b+sqrt(b^2-4*a*c))/(2*a) return(c(x1,x2)) } quadForm(1,2,1) ##...

86 sym