jofaichow commited on
Commit
c17ac90
1 Parent(s): 1f1b803

re-ordered KPI choices

Browse files
Files changed (1) hide show
  1. app/app.R +10 -15
app/app.R CHANGED
@@ -364,33 +364,28 @@ ui <- shinydashboardPlus::dashboardPage(
364
  markdown("#### **Pick ONE of the KPIs:**"),
365
  pickerInput(
366
  inputId = "kpi_choice",
367
- choices = c("MMCv2: The Latest and the Greatest MMC",
368
- "CORRv2: CORRelation with target cyrus_v4_20",
369
- "TC: True Contribtuion to the hedge fund's returns",
370
- "FNCv3: Feature Neutral Correlation with respect to the FNCv3 features",
371
- # "CORJ60: CORRelation with target Jerome_v4_60", # add this later
372
 
 
373
  "Percentile: MMCv2",
 
 
374
  "Percentile: CORRv2",
 
 
375
  "Percentile: TC",
 
 
376
  "Percentile: FNCv3",
377
 
378
  "CWMM: Correlation With the Meta Model",
379
  "MCWNM: Maximum Correlation With Numerai Models staked at least 10 NMR",
380
  "APCWNM: Average Pairwise Correlation With Numerai Models staked at least 10 NMR",
381
-
382
- "Score Multipliers: 0.5 x CORRv2 + 2.0 x MMCv2",
383
- "Score Multipliers: 0.5 x CORRv2",
384
- "Score Multipliers: 1.5 x CORRv2",
385
- "Score Multipliers: 2.0 x CORRv2",
386
- "Score Multipliers: 2.0 x CORRv2 + 0.5 x TC",
387
- "Score Multipliers: 2.0 x CORRv2 + 1.0 x TC",
388
-
389
-
390
-
391
 
392
  "Payout",
393
  "Rate of Return (%): Payout / Stake x 100"),
 
394
  multiple = FALSE,
395
  width = "95%")
396
  ),
 
364
  markdown("#### **Pick ONE of the KPIs:**"),
365
  pickerInput(
366
  inputId = "kpi_choice",
367
+ choices = c("Score Multipliers: 0.5 x CORRv2 + 2.0 x MMCv2",
368
+ "Score Multipliers: 2.0 x CORRv2 + 1.0 x TC",
 
 
 
369
 
370
+ "MMCv2: The Latest and the Greatest MMC",
371
  "Percentile: MMCv2",
372
+
373
+ "CORRv2: CORRelation with target cyrus_v4_20",
374
  "Percentile: CORRv2",
375
+
376
+ "TC: True Contribtuion to the hedge fund's returns",
377
  "Percentile: TC",
378
+
379
+ "FNCv3: Feature Neutral Correlation with respect to the FNCv3 features",
380
  "Percentile: FNCv3",
381
 
382
  "CWMM: Correlation With the Meta Model",
383
  "MCWNM: Maximum Correlation With Numerai Models staked at least 10 NMR",
384
  "APCWNM: Average Pairwise Correlation With Numerai Models staked at least 10 NMR",
 
 
 
 
 
 
 
 
 
 
385
 
386
  "Payout",
387
  "Rate of Return (%): Payout / Stake x 100"),
388
+
389
  multiple = FALSE,
390
  width = "95%")
391
  ),