tata色々な備忘録

データ解析、画像解析、化学分析などなど

2013-01-01から1ヶ月間の記事一覧

vim-quickrunでvim上からpython実行

vim-quickrunでvimからpython実行。 vim-pathogen入れた状態でbundleフォルダに移動して下記を実行。 git clone http://github.com/Shougo/vimshell.git git clone http://github.com/thinca/vim-quickrun.git ¥r でプログラムが実行される。 (syntaxでpyt…

ggplot2のラベル表記

R

ggplotのラベル表記でハマったので書く。 > library(ggplot2) > P <- ggplot(iris,aes(x=Sepal.Length,y=Sepal.Width))+geom_point(aes(color=Species)) > P ここから。 > library(scales) > P+ scale_y_continuous("変更")+scale_x_continuous(expression(…