0

この「サブサンプル」のようなデータがあります

structure(list(monthyr = structure(c(17287, 17287, 17287, 17287, 
17287, 17287, 17287, 17287, 17287, 17287, 17287, 17287, 17287, 
17287, 17287, 17287, 17287, 17287), class = "Date"), Location = c("TAI", 
"NAM", "LUI", "HEE", "BRA", "KEI", "TAI", "NAM", "LUI", "HEE", 
"BRA", "KEI", "TAI", "NAM", "LUI", "HEE", "BRA", "KEI"), ID = structure(c(-719050, 
-718685, -718320, -717954, -717589, -717224, -719050, -718685, 
-718320, -717954, -717589, -717224, -719050, -718685, -718320, 
-717954, -717589, -717224), class = "Date"), Type = structure(c(1L, 
1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 2L, 2L, 3L, 3L, 3L, 3L, 3L, 
3L), .Label = c("Industrial.compound", "Pesticide", "Pharmaceutical"
), class = "factor"), value = c(0.885230769230769, 1.9203125, 
3.26635, 0.950052631578947, 2.87133333333333, 3.194775, 0.0823076923076923, 
0.190833333333333, 0.467142857142857, 0.58173125, 0.1375, 0.3777475, 
0.0215555555555556, 0.240236363636364, 0.340790909090909, 0.150083333333333, 
0.103333333333333, 0.2665)), row.names = c(29L, 65L, 107L, 149L, 
194L, 237L, 279L, 315L, 357L, 399L, 444L, 487L, 529L, 565L, 607L, 
649L, 694L, 737L), class = "data.frame")
> 

https://github.com/hrbrmstr/streamgraphstreamgraphのパッケージを使用したい

だから私はこれをしました:

sg<-streamgraph(subexample,"Type","value", "ID" )%>%
  sg_legend(show=TRUE, label="Parameter: ")%>%
  sg_axis_x(1, "ID")%>% sg_axis_y(0)

素敵なストリームグラフを取得しましたが、追加するとsg_title

sg<-streamgraph(subexample,"Type","value", "ID" )%>%
      sg_legend(show=TRUE, label="Parameter: ")%>%
      sg_axis_x(1, "ID")%>% sg_axis_y(0)%>%sg_title("Title example") 

タイトルのストリームグラフではなく、コンソールに巨大なコードが表示されます。

こんな風に分けてみました。

sg<-streamgraph(subexample,"Type","value", "ID" )%>%
  sg_legend(show=TRUE, label="Parameter: ")%>%
  sg_axis_x(1, "ID")%>% sg_axis_y(0)

sg_title(sg, "Title example")

しかし、結果はありません。

タイトル付きのストリームグラフを取得するために何をする必要があるか知っていますか?

4

1 に答える 1