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

matplotlib 入門 お試しコードまとめ  -単体、+mysql

簡単な式や数字をグラフにする: 1: Pyplot tutorial — Matplotlib 1.4.3 documentation ----参照:numpy.arange — NumPy v1.9 Manual 2: Pythonのmatplotlibの使い方メモ | 未分類 | hydroculのメモ 3: 1.4. Matplotlib: 作図 — Scipy lecture notes 1:例 #…

Python visualization of data

matplotlib pygal -プレゼンなど用 ーー matplotlib インストール方法 Last login: Thu Jul 30 15:18:49 on ttys000 ➜ ~ pip install matplotlib /Library/Python/2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatfo…

重回帰分析と統計の基礎 リンクまとめ:t, p, など

<a href="http://labs.xica-inc.com/2014/06/7terms-to-understand-multiple-regression-analysis/" data-mce-href="http://labs.xica-inc.com/2014/06/7terms-to-understand-multiple-regression-analysis/">重回帰分析を理解するために知っておきた…

R ヒストグラム 描画 ddply パッケージ Error : Mapping a variable to y and also using stat="bin".

エラー: > ggplot(mau.payment.summary, aes(x = log_date, y = total.payment, fill=user_type))+geom_bar()+scale_y_continuous(label=comma)Error : Mapping a variable to y and also using stat="bin". With stat="bin", it will attempt to set the y…

R パッケージがインストールできないときの対策

問題:Rのパッケージがインストールできない 詳細 Rターミナル: > install.packages(plyr)Error in install.packages(plyr) : object 'plyr' not found (ここでGUI設定から"Install"へ) trying URL 'http://cran.ism.ac.jp/bin/macosx/mavericks/contrib/…

R 疑問

R

Rについて ・Rエディタにて データ参照 6pieces of info まで ーwhy, 設定どこ ・省略しているのはなに: r table [, c("")] p.104 以下のグラフ。 A, B の差+-を表したい。その計算方法がわからない。 分岐 方法:それぞれのlog_date について、test_case …

R環境構築

R

参考書: SBクリエイティブ:【ダウンロード】『ビジネス活用事例で学ぶ データサイエンス入門』事例用データとRのソースコード 環境構築: すべての参考:R - 事始め インストールする:

mysql カラムの統合

成功した記録: mysql> select restaurant_master.place_id, rating.place_id, AVG(rating) FROM restaurant_master LEFT JOIN rating ON restaurant_master.place_id = rating.place_id GROUP BY restaurant_master.place_id; エラー:ambiguous; mysql> se…