fsprojects-archive / zzarchive-generator-fsharp

[ARCHIVED] Yeoman F# generator
Apache License 2.0
62 stars 27 forks source link

FSBasicTemplate Broken #44

Open leolorenzoluis opened 8 years ago

leolorenzoluis commented 8 years ago

When creating a basic fs lab project, the School enrollment, tertiary (% gross) no longer exist in the latest World Bank DataContext

// Use Deedle to get time-series with school enrollment data
let czschool = series cz.``School enrollment, tertiary (% gross)``
let euschool = series eu.``School enrollment, tertiary (% gross)``

A working example was provided by Tomas by changing it to

let czschool = series cz.``Gross enrolment ratio, tertiary, both sexes (%)``
let euschool = series eu.``Gross enrolment ratio, tertiary, both sexes (%)``

// Get 5 years with the largest difference between EU and CZ
abs (czschool - euschool)
|> Series.sort
|> Series.rev
|> Series.take 5