Advertisement
Guest User

Untitled

a guest
Aug 13th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. module BigFourDomain =
  2.  
  3. type DiscographyOverview = { Band : string
  4. StudioAlbums : int
  5. LiveAlbums : int
  6. VideoAlbums : int
  7. EPs : int
  8. Singles : int }
  9.  
  10. type DescriptiveStatistics = { Name : string
  11. Mean : float
  12. Median : float
  13. StdDev : float
  14. Max : float
  15. Min : float }
  16.  
  17. type AlbumDetails = { Band : string
  18. AlbumName : string
  19. Year : int
  20. USPeakChartPosition : int option }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement