-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Example data for hInduce -- -- Example data for use with hInduce @package hinduce-examples @version 0.0.0.2 -- | An example of association rule mining: -- --
-- >>> rules transactions items (top ((take 40) . (filter (\(_,a)->a>= 60)))) -- > fromList [((fromList [32],fromList [947]),0.1694915254237288),((fromList [39],fromList [145]),0.17238139971817754),((fromList [39],fromList [145,419]),8.266791921089714e-2),((fromList [39],fromList [368]),0.1326914044152184),((fromList [39],fromList [419]),0.1200093940817285), --module Data.HInduce.Examples.Associations -- | The transactions in the T10I4D100K.dat data set. transactions :: Vector (Set Int) -- | The items in the T10I4D100K.dat data set. items :: Set Int module Data.HInduce.Examples.DecisionTree readCSV :: [Char] -> IO (Either ParseError CSV) data Iris Iris :: Double -> Double -> Double -> Double -> IrisClass -> Iris sepalLength :: Iris -> Double sepalWidth :: Iris -> Double petalLength :: Iris -> Double petalWidth :: Iris -> Double irisClass :: Iris -> IrisClass data IrisClass Setosa :: IrisClass Versicolor :: IrisClass Virginica :: IrisClass irisAttrs :: Iris -> [Double] irisAttrs' :: Iris -> ((Double, Double), (Double, Double)) readIris :: IO [Iris] iris :: [Iris] instance Eq IrisClass instance Ord IrisClass instance Show IrisClass instance Read IrisClass instance Eq Iris instance Ord Iris instance Show Iris instance Read Iris instance Layout IrisClass DisplayText -- | This package / module provides example data and example code to help -- you get started with HInduce. You are advised to import this module -- (ghci: :m + Data.HInduce.Examples), not the individual ones -- below, because Data.HInduce.Examples re-exports modules that -- are required to run the examples yourself. -- -- Click on a module below to view the examples you're interested in. -- Also note the grey Source links at the right hand site of the -- webpage. module Data.HInduce.Examples