R/plotly 망비록
데이터
UCI machine learning repository의 Water Treatment Plant 데이터. 우선 표준화.
library(plotly)
library(lubridate)
library(dplyr)
# https://archive.ics.uci.edu/ml/datasets/water+treatment+plant
X <- read.csv(file="water-treatment.data", header=FALSE, na.strings="?")
head(X)
X <- na.omit(X)
X <- X %>% mutate(V1=dmy(X$V1)) %>% arrange(V1)
head(X)
X <- X %>% mutate_if(is.numeric, scale) %>% mutate_if(is.numeric, as.numeric)
head(X)
Line-Plots
# line-plot
fig <- plot_ly(x=X$V1, y=X$V2, type="scatter", mode="lines", name="V2")
fig <- fig %>% add_trace(x=X$V1, y=X$V3, name="V3")
fig <- fig %>% add_trace(x=X$V1, y=X$V4, name="V4")
fig <- fig %>% add_trace(x=X$V1, y=X$V5, name="V5")
fig <- fig %>% layout(
xaxis=list(title="Date"),
yaxis=list(title="Value"))
fig
히스토그램
# Histogram
fig <- plot_ly(x=X$V2, type="histogram")
fig <- fig %>% layout(
xaxis=list(title="V2"),
yaxis=list(title="Count")
)
fig
Reference
이 문제에 관하여(R/plotly 망비록), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/yono2844/items/4a27f8b74dd31e20221d
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
library(plotly)
library(lubridate)
library(dplyr)
# https://archive.ics.uci.edu/ml/datasets/water+treatment+plant
X <- read.csv(file="water-treatment.data", header=FALSE, na.strings="?")
head(X)
X <- na.omit(X)
X <- X %>% mutate(V1=dmy(X$V1)) %>% arrange(V1)
head(X)
X <- X %>% mutate_if(is.numeric, scale) %>% mutate_if(is.numeric, as.numeric)
head(X)
# line-plot
fig <- plot_ly(x=X$V1, y=X$V2, type="scatter", mode="lines", name="V2")
fig <- fig %>% add_trace(x=X$V1, y=X$V3, name="V3")
fig <- fig %>% add_trace(x=X$V1, y=X$V4, name="V4")
fig <- fig %>% add_trace(x=X$V1, y=X$V5, name="V5")
fig <- fig %>% layout(
xaxis=list(title="Date"),
yaxis=list(title="Value"))
fig
히스토그램
# Histogram
fig <- plot_ly(x=X$V2, type="histogram")
fig <- fig %>% layout(
xaxis=list(title="V2"),
yaxis=list(title="Count")
)
fig
Reference
이 문제에 관하여(R/plotly 망비록), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/yono2844/items/4a27f8b74dd31e20221d
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
# Histogram
fig <- plot_ly(x=X$V2, type="histogram")
fig <- fig %>% layout(
xaxis=list(title="V2"),
yaxis=list(title="Count")
)
fig
Reference
이 문제에 관하여(R/plotly 망비록), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/yono2844/items/4a27f8b74dd31e20221d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)