使用scatter3d和Shiny动态生成绘图

时间:2017-07-16 09:10:08

标签: r shiny rgl r-car scatter3d

我尝试创建一个快速应用,让用户选择3个变量并使用scatter3D重新生成3D散点图。使用闪亮时我一直遇到这个错误,我无法看到纠正它。

  

错误:并非所有参数都具有相同的长度

如果替换,我的代码也有效:

x = paste("df.output$",input$test,sep=""),
y = paste("df.output$",input$test2,sep=""),
z = paste("df.output$",input$test3,sep=""),

x = df.output$age_scaled
y = df.output$freq_scaled
z = df.output$bonus_scaled

我的ui功能看起来像这样

ui <- fluidPage(
  titlePanel("3 Dimensional Cluster Analysis"),
  sidebarLayout( 
  sidebarPanel(
  selectInput("test", "X-Axis", choices=colnames(df.output) , 
  selected=colnames(df.output[1]), width = NULL, size = NULL),
    selectInput("test2", "Y-Axis", choices=colnames(df.output), 
  selected=colnames(df.output[2]), width = NULL, size = NULL),
    selectInput("test3", "Z-Axis", choices=colnames(df.output), 
  selected=colnames(df.output[3]), width = NULL, size = NULL)),

   mainPanel(
    rglwidgetOutput("plot",  width = 1000, height = 500)
      )
    ))

服务器功能如下所示

library(rgl)

server <- (function(input, output) 
{
  # reactive({
  #   a <- paste("df.output$",test$input,sep="")
  # })
  output$plot <- renderRglwidget(
    {
      rgl.open(useNULL=T)
      scatter3d(
        x = paste("df.output$",input$test,sep=""),
        y = paste("df.output$",input$test2,sep=""),
        z = paste("df.output$",input$test3,sep=""),
        groups = as.factor(df.output$Cluster), 
        grid=FALSE,
        surface=FALSE,
        ellipsoid=TRUE,
        ellipsoid.alpha=0.5,
        fit=smooth,
        xlab=input$test,
        ylab=input$test2,
        zlab=input$test3
      )
       par3d(mouseMode = "trackball")
       rglwidget() 
     })
})   

1 个答案:

答案 0 :(得分:0)

您的代码

RewriteEngine on

RewriteCond $1 !^(index\.php|(.*)\.swf|forums|images|css|downloads|jquery|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php?$1 [L,QSA]

将x设置为长度为1的字符向量。如果要从数据框中选择组件,请使用

x = paste("df.output$",input$test,sep="")

您的代码也不使用包含x = df.output[[input$test]] 的包(它不是scatter3d函数)。 rgl包中有一个带有该名称的函数,car包中有一个类似的名称。