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.
dPlots は素晴らしく、膨大な量のデータを非常に直感的に数秒で表示できます。それはいいですね。今度は、そのグラフをより大きな iframe で表示したいと考えています。dPlot の高さ/幅を変更しようとしましたが、うまくいきませんでした。チャートにタイトルを追加するのも好きです。助けてください。
以下のサンプル コードを使用しています ((github 経由で) timelyportfolio によって提供されたコード)
チャートの幅を変更する方法を示すコードを次に示します。
library(rCharts) titanic <- as.data.frame(Titanic) d1 <- dPlot( Freq ~ Sex, groups = "Survived", data = titanic, type = "bar" ) d1$set(width = 1200)
ラップトップでテストしましたが、動作します。これを実行するには、のdevブランチが必要です。rCharts
dev
rCharts