jofaichow commited on
Commit
7125dd7
1 Parent(s): c17ac90

v2.8.0 - changed filter starting round to 650

Browse files
Files changed (1) hide show
  1. app/app.R +6 -5
app/app.R CHANGED
@@ -314,7 +314,7 @@ ui <- shinydashboardPlus::dashboardPage(
314
 
315
  fluidRow(
316
 
317
- column(8,
318
 
319
  markdown("## **Step 4: Adjust the Filter**"),
320
 
@@ -323,12 +323,12 @@ ui <- shinydashboardPlus::dashboardPage(
323
  width = "100%",
324
  step = 1,
325
  min = 168, # first tournament round
326
- max = Rnumerai::get_current_round(), # note: daily payouts from round 474
327
- value = c(496, Rnumerai::get_current_round())
328
  )
329
  ),
330
 
331
- column(4,
332
 
333
  markdown("## **Step 5: Generate Summary**"),
334
  br(),
@@ -912,6 +912,7 @@ ui <- shinydashboardPlus::dashboardPage(
912
  - #### **0.2.5** — Added more features related to MMC
913
  - #### **0.2.6** — Added survey results - Ref: https://forum.numer.ai/t/around-the-world-with-numeratis-survey-for-upcoming-events
914
  - #### **0.2.7** — Removed `KPI (C&T)` and `Payout Simulation`
 
915
  "),
916
 
917
  br(),
@@ -930,7 +931,7 @@ ui <- shinydashboardPlus::dashboardPage(
930
 
931
  footer = shinydashboardPlus::dashboardFooter(
932
  left = "Powered by ❤️, ☕, Shiny, and 🤗 Spaces",
933
- right = paste0("Version 0.2.7"))
934
 
935
  )
936
 
 
314
 
315
  fluidRow(
316
 
317
+ column(9,
318
 
319
  markdown("## **Step 4: Adjust the Filter**"),
320
 
 
323
  width = "100%",
324
  step = 1,
325
  min = 168, # first tournament round
326
+ max = Rnumerai::get_current_round(),
327
+ value = c(650, Rnumerai::get_current_round()) # note: Round 650 == first round of 0.5 x CORR + 2 x MMC payout
328
  )
329
  ),
330
 
331
+ column(3,
332
 
333
  markdown("## **Step 5: Generate Summary**"),
334
  br(),
 
912
  - #### **0.2.5** — Added more features related to MMC
913
  - #### **0.2.6** — Added survey results - Ref: https://forum.numer.ai/t/around-the-world-with-numeratis-survey-for-upcoming-events
914
  - #### **0.2.7** — Removed `KPI (C&T)` and `Payout Simulation`
915
+ - #### **0.2.8** — Changed filter starting round to 650 (first round of new payout scheme)
916
  "),
917
 
918
  br(),
 
931
 
932
  footer = shinydashboardPlus::dashboardFooter(
933
  left = "Powered by ❤️, ☕, Shiny, and 🤗 Spaces",
934
+ right = paste0("Version 0.2.8"))
935
 
936
  )
937