-
Notifications
You must be signed in to change notification settings - Fork 0
/
server_mv_rb_kde.R
69 lines (45 loc) · 2.06 KB
/
server_mv_rb_kde.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
source("mv_rb_plot.R")
## Minimum risk
output$mv_rb_kde_min_risk1 <- renderPlot(
mv_rb_min_risk_plot1(estimator = "kendallEstimator", rb_text = "minimum covariance determinant estimator")
)
output$mv_rb_kde_min_risk2 <- renderPlot(
mv_rb_min_risk_plot2(estimator = "kendallEstimator", rb_text = "minimum covariance determinant estimator")
)
output$mv_rb_kde_min_risk3 <- renderPlot(
mv_rb_min_risk_plot3(estimator = "kendallEstimator", rb_text = "minimum covariance determinant estimator")
)
## Global minimum variance
output$mv_rb_kde_grobmin1 <- renderPlot(
mv_rb_globmin_plot1(estimator = "kendallEstimator", rb_text = "minimum covariance determinant estimator")
)
output$mv_rb_kde_grobmin2 <- renderPlot(
mv_rb_globmin_plot2(estimator = "kendallEstimator", rb_text = "minimum covariance determinant estimator")
)
output$mv_rb_kde_grobmin3 <- renderPlot(
mv_rb_globmin_plot3(estimator = "kendallEstimator", rb_text = "minimum covariance determinant estimator")
)
## Tangency
output$mv_rb_kde_tangen1 <- renderPlot(
mv_rb_tangen_plot1(estimator = "kendallEstimator", rb_text = "minimum covariance determinant estimator")
)
output$mv_rb_kde_tangen2 <- renderPlot(
mv_rb_tangen_plot2(estimator = "kendallEstimator", rb_text = "minimum covariance determinant estimator")
)
output$mv_rb_kde_tangen3 <- renderPlot(
mv_rb_tangen_plot3(estimator = "kendallEstimator", rb_text = "minimum covariance determinant estimator")
)
## Performance attribute
output$mv_rb_kde_performance1 <- renderPlot(
mv_rb_performance1(estimator = "kendallEstimator", rb_text = "minimum covariance determinant estimator")
)
output$mv_rb_kde_performance2 <- renderPlot(
mv_rb_performance2(estimator = "kendallEstimator", rb_text = "minimum covariance determinant estimator")
)
output$mv_rb_kde_performance3 <- renderPlot(
mv_rb_performance3(estimator = "kendallEstimator", rb_text = "minimum covariance determinant estimator")
)
## Frontier
output$mv_rb_kde_frontier1 <- renderPlot(
mv_rb_frontier1(estimator = "kendallEstimator", rb_text = "minimum covariance determinant estimator")
)