This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
redis-cli monitor | awk '{split($1,a,"."); print a[1]}' | uniq -c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##' Portland R User Group | |
##' | |
##' Debugging in R: | |
##' A Worst-Case Scenario Survival guide | |
##' Homer Strong, Qmedtrix | |
##' > Debugging is twice as hard as | |
##' > writing the code in the first place. | |
##' > Therefore, if you write the | |
##' > code as cleverly as possible, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Homer Strong, September 2010 | |
## | |
## This is an example of using dollar formatting with log10 scaling. | |
## See the commit | |
## http://github.com/strongh/ggplot2/commit/7402a13a8ad625a8acd3024c5726545a20ac838e | |
library(ggplot2) | |
data(diamonds) | |
## On the current ggplot, the formatter argument is ignored when using |
NewerOlder