【R】htmltools

1. はじめに

htmltoolsは、html形式でShinyやRmarkdownなどのインタラクティブな可視化を実現してくれるツールです。

2. インストール

CRANからインストールできます。

install.packages("htmltools")

3. つかってみる

library(htmltools)
library(plotly)
library(modeldata)
data(penguins)
head(penguins)
browsable(tagList(
plot_ly(penguins, x = ~bill_length_mm, y = ~body_mass_g, height = 200),
plot_ly(penguins, x = ~bill_depth_mm, height = 200)
))
library(htmltools) library(plotly) library(modeldata) data(penguins) head(penguins) browsable(tagList( plot_ly(penguins, x = ~bill_length_mm, y = ~body_mass_g, height = 200), plot_ly(penguins, x = ~bill_depth_mm, height = 200) ))
library(htmltools)
library(plotly)
library(modeldata)
data(penguins)
head(penguins)
browsable(tagList(
  plot_ly(penguins, x = ~bill_length_mm, y = ~body_mass_g, height = 200),
  plot_ly(penguins, x = ~bill_depth_mm, height = 200)
))

4. さいごに

簡単にHTMLでインタラクティブなプロットができて便利ですね。

Add a Comment

メールアドレスが公開されることはありません。