簡體   English   中英

R中的繪圖圖的坐標軸

[英]axis from plotly chart in R

我試圖用R中的plotly我想要的圖表 )重現此甘特圖。 我有一個包含6列的數據框,我想在y軸上顯示文本,而在x軸上則顯示年份。 根據我的dataframe我有以下內容:

one=c('bla','bla','bla',
        'bla','bla','bla','bla','bla','bla','bla',
        'bla','bla')
two=c('09/25/2017','10/02/2017','11/15/2017','11/29/2017','01/01/2018','01/01/2018','04/01/2018','07/01/2018','09/01/2018','09/01/2018',
                '08/01/2020','09/01/2020')
three=c(1102,55,46,214,181,181,122,62,700,700,31,30)
four=c('bla','bla','bla',
          'bla','bla','bla','bla',
          'bla','bla','bla'
          ,'bla','bla')
five=c('A','B','C','D','E','F','G','H','E','I','J','E')

df=data.frame(one,two,three,four,five)
df$two =as.Date(df$two,"%m/%d/%Y")

client = "my example"

# Choose colors based on number of resources
cols <- RColorBrewer::brewer.pal(length(unique(df$five)), name = "Set3")
df$color <- factor(df$five, labels = cols)

# Initialize empty plot
p <- plot_ly()

# Each task is a separate trace
# Each trace is essentially a thick line plot
# x-axis ticks are dates and handled automatically

for(i in 1:(nrow(df))){
  p <- add_trace(p,
                 x = c(df$two[i], df$two[i] + df$three[i]),  # x0, x1
                 y = c(i, i),  # y0, y1
                 mode = "lines",
                 line = list(color = df$color[i], width = 20),
                 showlegend = F,
                 hoverinfo = "text",

                 # Create custom hover text

                 text = paste("Task: ", df$one[i], "<br>",
                              "Duration: ", df$three[i], "days<br>",
                              "Resource: ", df$five[i]),

                 evaluate = T  # needed to avoid lazy loading
  )
}


# Add information to plot and make the chart more presentable

p <- layout(p,

            # Axis options:
            # 1. Remove gridlines
            # 2. Customize y-axis tick labels and show task names instead of numbers

            xaxis = list(showgrid = F, tickfont = list(color = "#e6e6e6")),

            yaxis = list(showgrid = F, tickfont = list(color = "#e6e6e6"),
                         tickmode = "array", tickvals = 1:nrow(df), ticktext = unique(df$one),
                         domain = c(0, 0.9)),

            # Annotations

            annotations = list(
              # Add total duration and total resources used
              # x and y coordinates are based on a domain of [0,1] and not
              # actual x-axis and y-axis values

              list(xref = "paper", yref = "paper",
                   x = 0.80, y = 0.1,
                   text = paste0("Total Duration: ", sum(df$three), " days<br>",
                                 "Total Resources: ", length(unique(df$five)), "<br>"),
                   font = list(color = "#ffff66", size = 12),
                   ax = 0, ay = 0,
                   align = "left"),

              # Add client name and title on top

              list(xref = "paper", yref = "paper",
                   x = 0.1, y = 1, xanchor = "left",
                   text = paste0("Gantt Chart: ", client),
                   font = list(color = "#f2f2f2", size = 20, family = "Times New Roman"),
                   ax = 0, ay = 0,
                   align = "left")
            ),

            plot_bgcolor = "#333333",  # Chart area color
            paper_bgcolor = "#333333")  # Axis area color

p

第一列(一個)是文本

所以我的問題是:

  1. 如何從y軸(而不是數字)的任務(第1列)中獲取文本?
  2. 如何獲得x軸上的所有月份?

謝謝。

回答問題1:

您當前的代碼沒有執行您想要的操作的原因是因為:

ticktext = unique(df$one)

由於df$one包含12個相同的值,因此只有1個唯一值,因此不是您需要的12個值。 為了解決這個問題,你可以只用ticktext = df$one或確保您在標簽df$one是唯一的(這在你連接到的例子)。 例如,將df$one更改為bla1,bla2,...,bla12將適用於當前示例。

還有問題2:

要在x軸上指定刻度間隔,可以使用dtick參數。 就您而言,這將導致x軸代碼行增加以下內容:

xaxis = list(showgrid = F, tickfont = list(color = "#e6e6e6"),
             dtick = "M1")

其中M表示您希望間隔以月為單位,1表示希望間隔為1個月(令人震驚!)。 僅供參考,這將自動將刻度標簽的方向更改為垂直,如果您想對此進行調整,則可以使用tickangle參數。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM