Send Beginners mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
http://www.haskell.org/mailman/listinfo/beginners
or, via email, send a message with subject or body 'help' to
[email protected]
You can reach the person managing the list at
[email protected]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Beginners digest..."
Today's Topics:
1. Re: Installing packages ? (Michael Xavier)
2. Thanks (CEO'Riley)
----------------------------------------------------------------------
Message: 1
Date: Sun, 18 Dec 2011 22:43:11 -0800
From: Michael Xavier <[email protected]>
Subject: Re: [Haskell-beginners] Installing packages ?
To: [email protected]
Cc: Haskell Beginners <[email protected]>
Message-ID:
<CANk=zmG8SivSU=f4=qqighcrl682rwod3u+wjadqjg_1il2...@mail.gmail.com>
Content-Type: text/plain; charset="windows-1252"
I would begin by looking at the docs for that package:
http://hackage.haskell.org/package/StatisticalMethods-0.0.0.1
In particular, the Modules section. Find the functions you want from the
modules that contain them and import them into your program. IE if you
wanted to work with a confusion matrix, whatever that is, and your program
looks like:
module MyModule where
.....
You instead do:
module MyModule where
import Statistics.ConfusionMatrix
... do stuff with the functions in that module ...
You may also find this handy:
http://haskell.org/haskellwiki/Import_modules_properly
and this tutorial:
http://learnyouahaskell.com/modules
Hope that helps
On Sun, Dec 18, 2011 at 9:39 PM, CEO'Riley <[email protected]> wrote:
> The package was StatisticalMethods. Unfortunately, I?m new at this and
> very anal. When you say import it into the project I?m using, I assume you
> mean via the Haskell program (WinGHC). If that?s correct, then what nexts?
> ****
>
> ** **
>
> ** **
>
> ** **
>
> Regards,****
>
> CEO?Riley****
>
> Charles E. O?Riley Jr.****
>
> ** **
>
> *From:* Michael Xavier [mailto:[email protected]]
> *Sent:* Sunday, December 18, 2011 11:37 PM
> *To:* [email protected]
> *Cc:* [email protected]
> *Subject:* Re: [Haskell-beginners] Installing packages ?****
>
> ** **
>
> Import it into a project you're using.****
>
> ** **
>
> What package was it?****
>
> On Sun, Dec 18, 2011 at 9:19 PM, CEO'Riley <[email protected]> wrote:****
>
> ****
>
> Hello all,****
>
> ****
>
> I recently installed a statistical package using cabal on my Windows
> machine. I need to know what to do next in order to get access to the
> statistical functionality. I?ve looked but have not been able to fine the
> answer. Thanks.****
>
> ****
>
> ****
>
> ****
>
> Regards,****
>
> CEO?Riley****
>
> Charles E. O?Riley Jr.****
>
> ****
>
>
> _______________________________________________
> Beginners mailing list
> [email protected]
> http://www.haskell.org/mailman/listinfo/beginners****
>
>
>
> ****
>
> ** **
>
> --
> Michael Xavier
> http://www.michaelxavier.net****
>
> LinkedIn <http://www.linkedin.com/pub/michael-xavier/13/b02/a26>****
>
> ** **
>
--
Michael Xavier
http://www.michaelxavier.net
LinkedIn <http://www.linkedin.com/pub/michael-xavier/13/b02/a26>
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://www.haskell.org/pipermail/beginners/attachments/20111218/0bd5766c/attachment-0001.htm>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/jpeg
Size: 7023 bytes
Desc: not available
URL:
<http://www.haskell.org/pipermail/beginners/attachments/20111218/0bd5766c/attachment-0001.jpeg>
------------------------------
Message: 2
Date: Mon, 19 Dec 2011 01:04:10 -0600
From: "CEO'Riley" <[email protected]>
Subject: [Haskell-beginners] Thanks
To: <[email protected]>
Message-ID: <[email protected]>
Content-Type: text/plain; charset="us-ascii"
Michael, Benjamin, thanks much.
Regards,
CEO'Riley
Charles E. O'Riley Jr.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://www.haskell.org/pipermail/beginners/attachments/20111219/87eeecf0/attachment.htm>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/jpeg
Size: 7023 bytes
Desc: not available
URL:
<http://www.haskell.org/pipermail/beginners/attachments/20111219/87eeecf0/attachment.jpeg>
------------------------------
_______________________________________________
Beginners mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/beginners
End of Beginners Digest, Vol 42, Issue 23
*****************************************