plotly heatmap doesn't take a dataframe
未關閉
還沒有人認領這個 Issue。
documentation
enhancement
- 主要語言
- R
- 星號
- 2.7k
- 分支
- 641
- PR 合併指標
- 30 天內沒有已合併 PR
描述
The figure reference documentation says
plot_ly(df, type="heatmap"[, ...])
the df in the code above indicates a data frame
The code below doesn't work
url <- "http://datasets.flowingdata.com/ppg2008.csv"
nba_players <- read.csv(url, row.names = 1)
plot_ly(nba_players, type = "heatmap")
A solution is to use a data.matrix
plot_ly(z = data.matrix(nba_players),
x = colnames(nba_players),
y = row.names(nba_players),
type = "heatmap")
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
先使用提供的 CSV 重現文件中的 plot_ly(nba_players, type = "heatmap") 範例,然後檢查熱圖 figure-reference 路徑。完成的標準是:要嘛如文件所述接受資料框,要嘛該參考內容清楚說明所需的矩陣轉換及其 x/y 標籤。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- plotly, r
- 領域
- data-visualization
- Issue 類型
- 缺陷
- 難度
- 3/5
- 預估耗時
- 1-2 天
- 活躍度
- 停滯
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100