после выбора в раскрывающемся списке не отображается гистограмма, относящаяся к фильтрации - PullRequest
0 голосов
/ 30 марта 2019

Я пытаюсь построить гистограмму на основе выбора выбора в раскрывающемся списке в R с Flex, используя библиотеку bsselectR. но он не показывает никаких ошибок, но не отображает график.

library(googleVis)
library(bsselectR)
library(stringr)
status =dbSendQuery(mydb,'select count(*) as bill_count, bs.status,pbi.service_date
from patient_bill_info pbi
inner join emedadminmaster.bill_status bs on bs.status_code = pbi.sent_to_billing
where pbi.sent_to_billing!="c" and pbi.service_date >="2018-01-01" and pbi.service_date<="2019-01-31"
group by pbi.sent_to_billing;')




bsselect(year, type = "img", selected = "Oregon", 
         live_search = TRUE, show_tick = TRUE)


y21 =dbSendQuery(mydb,'select bs.status,count(*) as bill_count, bs.status,pbi.service_date
                        from patient_bill_info pbi inner join emedadminmaster.bill_status bs on bs.status_code = pbi.sent_to_billing
                        where pbi.sent_to_billing!="c" and pbi.service_date >="2018-01-01" and pbi.service_date<="2019-01-31"
                        group by pbi.sent_to_billing;')

      y=fetch(y21,n=-1)
      print(y)
      y211<-y[grep(year,y$status,ignore.case = T),]
      print(y211)
      y20<-data.frame(y211$status,y211$bill_count)
      print(y20)
      print(str(na.omit(y20)))
      y20piechart<- gvisAreaChart(y20)


спасибо заранее!

...