name: ideas-statistics
version: 1.0
synopsis: Interactive domain reasoner for statistics
homepage: http://ideas.cs.uu.nl/
description:
Interactive domain reasoner for statistics, based on the feedback services
of the Ideas framework. Provides feedback and hints on step-by-step construction
of hypothesis tests by students. Test types supported include z-tests, t-tests
for one group, dependent groups and independent groups, correlation, ANOVA and
Chi-square tests. The domain reasoner is used by the learning environment Numworx
(www.numworx.nl) and is available for implementation in other learning
environments as well.
category: Education
copyright: (c) 2020
license: Apache-2.0
license-file: LICENSE.txt
author: Bastiaan Heeren, Sietske Tacoma, Noeri Huisman
maintainer: bastiaan.heeren@ou.nl
stability: provisional
extra-source-files: NOTICE.txt
build-type: Simple
cabal-version: >= 1.8.0.2
tested-with: GHC == 8.6.5
source-repository head
type: svn
location: https://ideastest.science.uu.nl/svn/ideas/Tutors/statistics
--------------------------------------------------------------------------------
executable statistics.cgi
main-is: Main.hs
hs-source-dirs: src
ghc-options: -Wall
build-depends:
base >= 4.8 && < 5,
containers,
ideas >= 1.8,
ideas-math-types >= 1.1
other-modules:
Domain.Hypothesis.BuggyRules,
Domain.Hypothesis.Common,
Domain.Hypothesis.Constraints,
Domain.Hypothesis.Examples,
Domain.Hypothesis.Exercises,
Domain.Hypothesis.Rules,
Domain.Hypothesis.Strategies,
Domain.Hypothesis.Tables,
Domain.Statistics.Component,
Domain.Statistics.ComponentSet,
Domain.Statistics.Data,
Domain.Statistics.Parser,
Domain.Statistics.Rules,
Domain.Statistics.Symbols,
Domain.Statistics.Views,
Service.ConstraintServices
--------------------------------------------------------------------------------