datasets-0.3.0: src/Numeric/Datasets/OldFaithful.hs
{-# LANGUAGE DeriveGeneric, OverloadedStrings, DataKinds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-|
Old Faithful Geyser Eruption data
Article: http://web.pdx.edu/~jfreder/M212/oldfaithful.pdf
These data from: <http://www2.stat.duke.edu/courses/Fall02/sta290/datasets/geyser>
For more data, see <http://www.geyserstudy.org/geyser.aspx?pGeyserNo=OLDFAITHFUL>
-}
module Numeric.Datasets.OldFaithful where
import Numeric.Datasets
import Data.Csv
import Control.Applicative
import Network.HTTP.Req ((/:), https, Scheme(..))
data OldFaithful = OldFaithful
{ waiting :: Double -- ^ waiting time until next eruption
, duration :: Double -- ^ duration of eruption in minutes
} deriving Show
instance FromRecord OldFaithful where
parseRecord v = OldFaithful <$> v .! 2 <*> v.! 1
oldFaithful :: Dataset 'Https OldFaithful
oldFaithful
= let src = URL $ https "raw.githubusercontent.com" /: "vincentarelbundock" /: "Rdatasets" /: "master" /: "csv" /: "datasets" /: "faithful.csv"
in Dataset src Nothing Nothing $ CSVRecord HasHeader defaultDecodeOptions