Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

Think Stats by Allen B. Downey Think Stats is an introduction to Probability and Statistics for Python programmers.

This is the accompanying code for this book.

Website: http://greenteapress.com/wp/think-stats-2e/

Views: 7138
License: GPL3
1
from setuptools import setup
2
3
4
setup(name='thinkstats2',
5
version='1.0',
6
description="Library code for Think Stats, 2nd Edition packaged",
7
author='Allen Downey',
8
license="GPLv3",
9
py_modules=['thinkstats2', 'thinkplot'],
10
url='https://github.com/AllenDowney/ThinkStats2',
11
install_requires=[
12
'matplotlib',
13
'numpy',
14
'pandas',
15
'scipy',
16
],
17
)
18
19