Skip to content

Commit

Permalink
Use a base 10 log
Browse files Browse the repository at this point in the history
  • Loading branch information
rdpeng committed Mar 3, 2014
1 parent 77d0801 commit 044c284
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 04_ExploratoryAnalysis/CaseStudy/script.R
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ mean(is.na(x1)) ## Are missing values important here?

## Make a boxplot of both 1999 and 2012
boxplot(x0, x1)
boxplot(log(x0), log(x1))
boxplot(log10(x0), log10(x1))

## Check negative values in 'x1'
summary(x1)
Expand Down

0 comments on commit 044c284

Please sign in to comment.