Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
circlize パッケージを使用してコード ダイアグラムを作成しました。残念ながら、これをオブジェクトとして保存する方法はないようです。周囲のテキストの一部を変更して xlsx にエクスポートできるように、プロットをオブジェクト (特に ggplot obkect) にしたいと考えています。助言がありますか?
ありがとう!
さまざまなパッケージのいくつかのオプション:
ggplotify:
g <- as.grob(~plot(runif(10))) grid.draw(g)
カウプロット:
plot(runif(10)) p1_recorded <- recordPlot() ggdraw(p1_recorded)