Skip to content

Commit 366c7b0

Browse files
committed
finding the type of data storage at work
1 parent ad0469c commit 366c7b0

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

SurveyAnalysisWebApp/server.R

+6
Original file line numberDiff line numberDiff line change
@@ -441,4 +441,10 @@ server<-function(input,output)
441441

442442

443443
})
444+
445+
446+
#what is the type of Data storage at work
447+
output$DataStorageWork<-renderHighchart({
448+
449+
})
444450
}

SurveyAnalysisWebApp/ui.R

+21-1
Original file line numberDiff line numberDiff line change
@@ -507,14 +507,34 @@ dashboardPage(
507507

508508
),
509509

510-
#pie chart of most used data at work
510+
511+
#bar chart of most used data at work
511512
box(
512513

513514
highchartOutput("Datatype"),
514515
width=12
515516
) ,#end box
516517
br(),
517518

519+
520+
h3("What is the type of Data storage at Work",align="center"),
521+
522+
#Type of data storage at work
523+
box(
524+
525+
selectInput("industry8",label="Select Industry",
526+
choices=TopIndustry[,1]),
527+
528+
width=12
529+
),
530+
box(
531+
532+
highchartOutput("DataStorageWork"),
533+
width=12
534+
) ,
535+
536+
537+
518538
h3("What is the size of dataset used at work",align="center"),
519539
br(),
520540

0 commit comments

Comments
 (0)