sample
1 htmlやcssの利用
1.1 文章
普通の文章です。太字です。斜体です。
アンダーラインです。打ち消し線です。
文字サイズの変更です。
青色です。青色です。
黄色です。
1.2 表やリスト
header1 | header2 |
---|---|
a | b |
c | d |
- リスト1
- リスト2
- リスト3
2 TeXの利用
\(y= ax+b\)
\(a^2 , a_2, \sqrt{a}\)
\(\frac{a}{b}\)
\(=, <, >, \leq, \geq\)
\(\sum_{n=1}^{10} x_n\)
\(\prod_{n=1}^{10} x_n\)
\(\cdot, \cdots, \vdots, \ddots\)
\[\begin{eqnarray}
y&=&(a+b)^2\\
&=&a^2 + 2ab + b^2
\end{eqnarray}\]
3 Rコードの利用
library(dplyr)
library(ggplot2)
library(DT)
library(plotly)
3.1 データの確認
datatable(iris,
filter='top', # 各列の検索機能
extensions = 'Scroller', # スクロール
class="compact", # コンパクトに
options = list(
scrollY = 400, # スクロール幅
searching = TRUE, # 検索機能
paging = FALSE, # ページ機能off
columnDefs = list(list(className = 'dt-left', targets = "_all")) # 左寄せd
) )
3.2 データの可視化
<-iris %>%
p ggplot(aes(Sepal.Length, Sepal.Width)) +
geom_point() +
theme_classic(base_family = "HiraKakuPro-W3") +
theme(text=element_text(size=30)) +
labs(title="プロット")
ggplotly(p)