2008-12-30

Sneak Attack - Awesome R Resource

Back to flipping out...

2008-12-17

Sneak Attack: world war vi

Back to flipping out...

2008-12-09

An R Cheatsheet

R is seriously cool. Unfortunately for me, I only use it about once a year, so I can never remember how to do anything; hence the cheatsheet.

Read a CSV file into a variable

users_usergroups <- read.csv(file="dev/users-per-group.csv", sep=",", head=TRUE)
Generate a boxplot

boxplot(users_usergroups$NUM_OF_USERS)
Generate a histogram

hist(users_usergroups$NUM_OF_USERS)

Back to flipping out...

2008-12-07

A Python Kōan?

The Zen of Python teaches us Explicit is better than implicit. BDFL GvR made variable declarations implicit.

Back to flipping out...