Bonjour a tous,

Je souhaite creer une application qui permette a l'utilisateur de upload un fichier excel et de faire des graphes a partir des variables provenant du fichier excel.
Cependant, je n'arrive pas a savoir pourquoi mon graphique ne s'affiche pas. J'utilise ggplot puis ggplotly.

J'espere que vous pourrez m'eclairer.

Merci d'avance.

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
 
library(shiny)
library(rsconnect)
library(ggplot2)
library(plotly)
 
plotType <- function(data, x, y, type){
  switch(type,
         "Line" = ggplot(data, aes_string(x, y)) + geom_line(),
         "Scatterplot" = ggplot(data, aes_string(x, y)) + geom_point()
  )
}
 
ui <- fluidPage(
 
  # sidebar with user input options
  sidebarPanel(
 
    # Input: select a file
    fileInput(inputId = "file1", label = "Choose CSV File",
              multiple = FALSE,
              accept = c("text/csv",
                         "text/comma-separated-values, text/plain",
                         ".csv")
    ),
    # Horizontal line
    tags$hr(),
 
    # Input: Checkbox if file has header
    checkboxInput("header", "Header", TRUE),
 
    # Input: Select separator
    radioButtons(inputId ="sep", label = "Separator",
                 choices = c(Comma = ",",
                             Semicolon = ";",
                             Tab = "\t"),
                 selected = ","),
 
    radioButtons(inputId = "quote", label = "Quote",
                 choices = c(None = "",
                             "Double Quote" = '"',
                             "Single Quote" = "'"),
                 selected = '"'),
    # Horizontal line
    tags$hr(),
    # Empty inputs - they will be updated after the data is uploaded
    selectInput('xcol', 'X Variable', ""),
    selectInput('ycol', 'Y Variable', "", selected = ""),
     # Horizontal line
    tags$hr(),
    # Input: Select the type of graph 
    radioButtons(inputId ="graph", label = "Type of graph:",
                 choices = c("Line", 
                             "Scatterplot"),
                 selected = "Line")
  ),
    mainPanel(
    tabsetPanel( type = "tabs",
                 tabPanel(
                   # App title
                   titlePanel("Uploading Files"),
                   # Output: Data file
                   tableOutput("contents")
 
                 ),
                 tabPanel(
                   titlePanel("Plot"),
                   plotOutput('MyPlot')
                 ),
                 tabPanel(
                   titlePanel("Summary Statistics"),
                   verbatimTextOutput("summary")
                 )
    )
  )
)
 
server <- function(input, output, session) {
 
 
 
  data <- reactive({
    req(input$file1)
 
    df <- read.csv(input$file1$datapath,
                   header = input$header,
                   sep = input$sep,
                   quote = input$quote)
 
    updateSelectInput(session, inputId = 'xcol', label = 'X Variable',
                      choices = names(df), selected = names(df)[sapply(df, is.numeric)])
    updateSelectInput(session, inputId = 'ycol', label = 'Y Variable',
                      choices = names(df), selected = names(df)[sapply(df, is.numeric)])
 
    return(df)
 
  })
 
  x_axe <- reactive({
    data()[ , input$xcol]
  })
 
  y_axe <- reactive({
    data()[, input$ycol]
  })
 
  style <- reactive({
    input$graph
  })
 
  output$contents <- renderTable({
    data()
  })
 
  output$MyPlot <- renderPlotly({
    #x <- data()[, c(input$xcol, input$ycol)]
    p <- plotType(data(), x_axe(),
             y_axe(),
             style())
    p
 
 
  })
 
 
  output$summary <- renderPrint({
    y <- data()
    summary(y)
 
  })
 
}
 
# Create Shiny app
shinyApp(ui = ui, server = server)