我正在学习Shiny,并试图从虹膜数据集中绘制定量数据。我在ui.R中的选择性输入似乎有效,但我无法进行绘图。有什么建议? 代码
ui.R
irisx<-read.csv("iris.csv",header=T)
library(shiny)
shinyUI(fluidPage(
titlePanel("Assignment 11"),
sidebarLayout(
sidebarPanel(
selectizeInput("x","X:",choices = c("Sepal Length"="Sepal.Length","Sepal Width"="Sepal.Width","Petal Length"="Petal.Length", "Petal Width"="Petal.Width")),
selectizeInput("y","Y:",choices = c("Sepal Length"="Sepal.Length","Sepal Width"="Sepal.Width","Petal Length"="Petal.Length", "Petal Width"="Petal.Width"))
),
mainPanel(plotOutput("irisChart"))
)
))
server.R
irisx<-read.csv("iris.csv",header=T)
library(shiny)
library(ggplot)
shinyServer(function(input,output){
output$irisChart<-renderPlot({
irx<-as.numeric(input$x)
iry<-as.numeric(input$y)
p1<-ggplot(irisx,aes(input$x,input$y)) + geom_point()
print(p1)
})
})
答案 0 :(得分:2)
将aes_string
添加到您的ggplot
rm(list = ls())
library(shiny)
library(ggplot2)
irisx <- iris
ui <- fluidPage(
titlePanel("Assignment 11"),
sidebarLayout(
sidebarPanel(
selectizeInput("x","X:",choices = c("Sepal Length"="Sepal.Length","Sepal Width"="Sepal.Width","Petal Length"="Petal.Length", "Petal Width"="Petal.Width")),
selectizeInput("y","Y:",choices = c("Sepal Length"="Sepal.Length","Sepal Width"="Sepal.Width","Petal Length"="Petal.Length", "Petal Width"="Petal.Width"))
),
mainPanel(plotOutput("irisChart"))
)
)
server <- shinyServer(function(input,output){
output$irisChart <- renderPlot({
irx <- input$x
iry <- input$y
p1 <- ggplot(data = irisx,aes_string(irx,iry)) + geom_point()
p1
})
})
shinyApp(ui, server)