来自所选下拉变量的R Shiny Summary Statistics

时间:2018-02-20 00:33:15

标签: r shiny

我对R闪亮很新。我一直在开发一个代码,允许我从.csv数据集中选择变量,然后生成汇总统计信息。选择变量的下拉菜单未激活,以前基于分层过滤数据的功能不起作用,并且未生成摘要统计信息。任何帮助将不胜感激。谢谢。

val intent = Intent(this,CorrectGuessActivity::class.java)
startActivity(intent)

2 个答案:

答案 0 :(得分:1)

很抱歉,但是你的代码有点乱,因此我开始使用基于临时的on another answer并将其作为起点。 enter image description here  以下代码执行了以下操作:

  1. 显示上传的CSV
  2. 显示CSV摘要
  3. 绘制所选变量的直方图(如果它是数字)。
  4. 使用for item in queryset: if VacationEdit.objects.filter(user=user, edited_year=current_year).exists(): continue item.calculconge = item.calculVacation + item.VacationDays VacationEdit.objects.create(...) item.save()

    内的renderUI创建变量下拉列表
    server

答案 1 :(得分:0)

mytable <- reactive({ 

在正确的位置没有匹配的}。

此外,本节:

# Create Table of Summary Statistics from the selected Variable

print(mytable)
mytable<-as.data.frame(mytable)

# Select based on the drop down variable
mytable<- mytable %>% 
  select(mytable$vari)

不在任何反应环境中。所以它永远不会运行。另外,你已经写过了

mytable <- as.data.frame(mytable)

当你的意思是:

mytable <- as.data.frame(mytable())
但是,我不会这样做。称之为别的:

newTable <- as.data.frame(mytable())

修复所有这些并再次开始。