以下のような日時項目をRで扱う場合
Nitiji
"2016-10-13 12:14:20.8830000"
as.POSIXct(Nitiji, format = "%Y-%m-%d %H:%M:%OS")
plot
`
g <- ggplot(
g, # 作成したデータフレームを指定
aes (
x = as.POSIXct(seirituNitiji, format = "%Y-%m-%d %H:%M:%OS"),
y = seirituSP
)
)
g <- g + geom_line(
colour = "magenta", # 線の色
linetype = 2, # 線のタイプ
size = 0.5 # 線の太さ
)
g <- g + xlab("x axis") # x座標
g <- g + ylab("y axis") # y座標
g <- g + ggtitle("Sample") # グラフタイトル
g <- g + theme_bw()
plot(g)
`