easyhtmlreportの紹介

54
EasyHTMLReport の紹介 @yokkuns: 洋平 2014-02-22 36Tokyo.R 14222日土曜日

Upload: yohei-sato

Post on 31-May-2015

3.168 views

Category:

Documents


2 download

TRANSCRIPT

Page 1: EasyHtmlReportの紹介

EasyHTMLReportの紹介

@yokkuns: 里 洋平2014-02-22 第36回Tokyo.R

14年2月22日土曜日

Page 2: EasyHtmlReportの紹介

AGENDA

•自己紹介

•EasyHTMLReportパッケージ

•easyHtmlReport関数

• simpleHtmlReport関数

14年2月22日土曜日

Page 3: EasyHtmlReportの紹介

AGENDA

•自己紹介

•EasyHTMLReportパッケージ

•easyHtmlReport関数

• simpleHtmlReport関数

14年2月22日土曜日

Page 4: EasyHtmlReportの紹介

里洋平(@yokkuns)• 元Webエンジニアのデータサイエンティスト

• Tokyo.R主催者

14年2月22日土曜日

Page 5: EasyHtmlReportの紹介

執筆

14年2月22日土曜日

Page 6: EasyHtmlReportの紹介

AGENDA

•自己紹介

•EasyHTMLReportパッケージ

•easyHtmlReport関数

• simpleHtmlReport関数

14年2月22日土曜日

Page 7: EasyHtmlReportの紹介

Rからレポートメールを送りたい

14年2月22日土曜日

Page 8: EasyHtmlReportの紹介

EasyHTMLReportパッケージ

14年2月22日土曜日

Page 9: EasyHtmlReportの紹介

EasyHTMLReportパッケージとは

• Rから簡単にHTMLメールを送れるパッケージ

• 実はR Advent Calendar2012で作ったものをパッケージ化したもの

14年2月22日土曜日

Page 10: EasyHtmlReportの紹介

easyHtmlReport関数

14年2月22日土曜日

Page 11: EasyHtmlReportの紹介

easyHtmlReport関数easyHtmlReport(rmd.file, from, to, subject)

• rmd.file: R Markdown ファイルのパス

• from: 送信者

• to: 宛先

• subject: メールタイトル

14年2月22日土曜日

Page 12: EasyHtmlReportの紹介

easyHtmlReportの中身

http://www.slideshare.net/yokkuns/r-1618905814年2月22日土曜日

Page 13: EasyHtmlReportの紹介

Rmdファイルの作成stock_anomaly_detection_sample.Rmd

14年2月22日土曜日

Page 14: EasyHtmlReportの紹介

実行

14年2月22日土曜日

Page 15: EasyHtmlReportの紹介

結果

14年2月22日土曜日

Page 16: EasyHtmlReportの紹介

とっても簡単!

14年2月22日土曜日

Page 17: EasyHtmlReportの紹介

職場で布教活動したところ

14年2月22日土曜日

Page 18: EasyHtmlReportの紹介

”Rmdファイルを作るの面倒くさい”

14年2月22日土曜日

Page 19: EasyHtmlReportの紹介

“関数で自動で作ってくれ”

14年2月22日土曜日

Page 20: EasyHtmlReportの紹介

作った

14年2月22日土曜日

Page 21: EasyHtmlReportの紹介

simpleHtmlReport関数

14年2月22日土曜日

Page 22: EasyHtmlReportの紹介

simpleHtmlReport関数simpleHtmlReport(report.name, mail.from, mail.to, subject, report.data)

• report.name: レポート名

• mail.from: 送信者

• mail.to: 宛先

• subject: メールタイトル

• report.data: レポートするデータと設定項目のリスト

14年2月22日土曜日

Page 23: EasyHtmlReportの紹介

report.dataの基本項目

• data: レポートしたデータのdata.frame

• id: グラフのx軸になるカラム名

• variable: グラフの凡例になるカラム名

• value: グラフのy軸になるカラム名

14年2月22日土曜日

Page 24: EasyHtmlReportの紹介

自動で作成されるグラフ

• 折れ線グラフ

• idが数値、または日付(文字列可)

• 棒グラフ

• idが日付以外の文字列

14年2月22日土曜日

Page 25: EasyHtmlReportの紹介

サンプルデータ作成

14年2月22日土曜日

Page 26: EasyHtmlReportの紹介

実行例1

14年2月22日土曜日

Page 27: EasyHtmlReportの紹介

実行結果1

14年2月22日土曜日

Page 28: EasyHtmlReportの紹介

実行例2

14年2月22日土曜日

Page 29: EasyHtmlReportの紹介

実行結果2

14年2月22日土曜日

Page 30: EasyHtmlReportの紹介

その他設定可能な項目

14年2月22日土曜日

Page 31: EasyHtmlReportの紹介

グラフタイトルと表タイトルを変える

14年2月22日土曜日

Page 32: EasyHtmlReportの紹介

graph.text、table.text

14年2月22日土曜日

Page 33: EasyHtmlReportの紹介

実行結果

14年2月22日土曜日

Page 34: EasyHtmlReportの紹介

実行結果

14年2月22日土曜日

Page 35: EasyHtmlReportの紹介

表の行数が気に入らない

14年2月22日土曜日

Page 36: EasyHtmlReportの紹介

table.tail

14年2月22日土曜日

Page 37: EasyHtmlReportの紹介

実行結果

14年2月22日土曜日

Page 38: EasyHtmlReportの紹介

実行結果

14年2月22日土曜日

Page 39: EasyHtmlReportの紹介

グラフの大きさが気に入らない

14年2月22日土曜日

Page 40: EasyHtmlReportの紹介

fig.width, fig.height

14年2月22日土曜日

Page 41: EasyHtmlReportの紹介

実行結果

14年2月22日土曜日

Page 42: EasyHtmlReportの紹介

棒グラフで積み上げしたくない

14年2月22日土曜日

Page 43: EasyHtmlReportの紹介

position

14年2月22日土曜日

Page 44: EasyHtmlReportの紹介

実行結果

14年2月22日土曜日

Page 45: EasyHtmlReportの紹介

メールの最初の文を変更したい

14年2月22日土曜日

Page 46: EasyHtmlReportの紹介

rmd.header

14年2月22日土曜日

Page 47: EasyHtmlReportの紹介

実行結果

14年2月22日土曜日

Page 48: EasyHtmlReportの紹介

実行結果

14年2月22日土曜日

Page 49: EasyHtmlReportの紹介

メールの最後の文を変更したい

14年2月22日土曜日

Page 50: EasyHtmlReportの紹介

rmd.footer

14年2月22日土曜日

Page 51: EasyHtmlReportの紹介

実行結果

14年2月22日土曜日

Page 52: EasyHtmlReportの紹介

実行結果

14年2月22日土曜日

Page 53: EasyHtmlReportの紹介

AGENDA

•自己紹介

•EasyHTMLReportパッケージ

•easyHtmlReport関数

• simpleHtmlReport関数

14年2月22日土曜日

Page 54: EasyHtmlReportの紹介

ご清聴ありがとうございました

14年2月22日土曜日