-
Notifications
You must be signed in to change notification settings - Fork 3
/
ui.R
67 lines (66 loc) · 3.55 KB
/
ui.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
library(shiny)
library(shinythemes)
require(markdown)
shinyUI(fluidPage(
theme = shinytheme("flatly"),
tags$head(
tags$style(HTML("p { font-size: small; }"))
),
titlePanel("R Packages and Licenses by Task View"),
fluidRow(
column(checkboxInput("task", "Filter by Task View", TRUE), width = 2),
column(
conditionalPanel(
"input.task",
selectizeInput("view", NULL,
choices = list(
"Bayesian Inference" = "Bayesian",
"Chemometrics and Computational Physics" = "ChemPhys",
"Clinical Trial Design, Monitoring, and Analysis" = "ClinicalTrials",
"Cluster Analysis & Finite Mixture Models" = "Cluster",
"Differential Equations" = "DifferentialEquations",
"Probability Distributions" = "Distributions",
"Econometrics" = "Econometrics",
"Analysis of Ecological and Environmental Data" = "Environmetrics",
"Design of Experiments (DoE) & Analysis of Experimental Data" = "ExperimentalDesign",
"Extreme Value Analysis" = "ExtremeValue",
"Empirical Finance" = "Finance",
"Statistical Genetics" = "Genetics",
"Graphic Displays & Dynamic Graphics & Graphic Devices & Visualization" = "Graphics",
"High-Performance and Parallel Computing with R" = "HighPerformanceComputing",
"Machine Learning & Statistical Learning" = "MachineLearning",
"Medical Image Analysis" = "MedicalImaging",
"Meta-Analysis" = "MetaAnalysis",
"Multivariate Statistics" = "Multivariate",
"Model Deployment with R" = "ModelDeployment",
"Natural Language Processing" = "NaturalLanguageProcessing",
"Numerical Mathematics" = "NumericalMathematics",
"Official Statistics & Survey Methodology" = "OfficialStatistics",
"Optimization and Mathematical Programming" = "Optimization",
"Analysis of Pharmacokinetic Data" = "Pharmacokinetics",
"Phylogenetics, Especially Comparative Methods" = "Phylogenetics",
"Psychometric Models and Methods" = "Psychometrics",
"Reproducible Research" = "ReproducibleResearch",
"Robust Statistical Methods" = "Robust",
"Statistics for the Social Sciences" = "SocialSciences",
"Analysis of Spatial Data" = "Spatial",
"Handling and Analyzing Spatio-Temporal Data" = "SpatioTemporal",
"Survival Analysis" = "Survival",
"Time Series Analysis" = "TimeSeries",
"Web Technologies and Services" = "WebTechnologies",
"gRaphical Models in R" = "gR"
),
multiple = TRUE, selected = c("MachineLearning", "Cluster"),
options = list(plugins = list("remove_button")), width = "100%")
),
width = 6),
column(checkboxGroupInput(
"fields", "Show additional fields:",
choices = c("Description", "URL", "Authors"),
inline = TRUE
), width = 4)
),
DT::dataTableOutput("packages"),
br(),
includeMarkdown("README.md")
))