Posts Tagged ‘ tutorial ’

R Tutorial Series: Citing R with EndNote

January 6, 2012
By
R Tutorial Series: Citing R with EndNote

Unfortunately, due to the vexing complexities of academic style guides and the limitations of associated software packages, citing a non-standard name, such as Cher, Prince, or R Development Core Team can be problematic. Thankfully, I have discovered a...

Read more »

Tutorial on SPARQL Package for R

December 19, 2011
By
Tutorial on SPARQL Package for R

Tools are major enablers of Linked Science. One crucial aspect is how to access and analyze data, and especially how to get only that part of data which is of interest for a given research question.  Linked Data solves the … Continue reading

Read more »

data.frame objects in R (via “R in Action”)

December 18, 2011
By
data.frame objects in R (via “R in Action”)

The followings introductory post is intended for new users of R.  It deals with R data frames: what they are, and how to create, view, and update them. This is a guest article by Dr. Robert I. Kabacoff, the founder of (one of) the first online R tutorials websites: Quick-R.  Kabacoff has recently published...

Read more »

Installing Rcpp on Windows 7 for R and C++ integration

December 7, 2011
By
Installing Rcpp on Windows 7 for R and C++ integration

Introduction Romain Francois presented an Rcpp solution on his blog to an old r-wiki optimisation challenge which I had also presented R solutions for previously on my blog. The Rcpp package provides a method for integrating R and C++. This allows for faster execution of an R project by recoding the slower R parts into C+ and thus providing potential performance...

Read more »

Using neural network for regression

November 17, 2011
By
Using neural network for regression

Artificial neural networks are commonly thought to be used just for classification because of the relationship to logistic regression: neural networks typically use a logistic activation function and output values from 0 to 1 like logistic regression. ...

Read more »

fgui: Automatically Creating Widgets for Arguments of a Function – A Quick Example

November 16, 2011
By
fgui: Automatically Creating Widgets for Arguments of a Function – A Quick Example

Here’s something I came across by accident, an R package called fgui which has the ability to automatically create a widget just by passing it a function with parameters, e.g.: The GUI produced from the code above looks like this: I love how easy that was to do, very cool, and useful too! The...

Read more »

Creating an R package, using developer/productivity tools

October 27, 2011
By
Creating an R package, using developer/productivity tools

Couple of R programming (mainly infrastructure/workflow) related topics discussed at the Los Angeles R users group in a tutorial/demo-like form (targeted mainly to beginners) by Szilard Pafka and Jeroen Ooms: how easy it is to create a simple package for … Continue reading

Read more »

R Tutorial Series: Exploratory Factor Analysis

October 24, 2011
By
R Tutorial Series: Exploratory Factor Analysis

Exploratory factor analysis (EFA) is a common technique in the social sciences for explaining the variance between several measured variables as a smaller set of latent variables. EFA is often used to consolidate survey data by revealing the groupings ...

Read more »

Confidence interval diagram in R

October 19, 2011
By
Confidence interval diagram in R

This code shows how to easily plot a beautiful confidence interval diagram in R. First, create a data frame (R’s representation of a table) with three columns. There are two rows for two confidence intervals, but you can have as many rows as you ...

Read more »

Paired sample t-test in R

September 28, 2011
By
Paired sample t-test in R

Let’s walk through using R and Student’s t-test to compare paired sample data. The book Statistics: The Exploration & Analysis of Data (6th edition, p505) presents the longitudinal study “Bone mass is recovered from lactation to p...

Read more »