Skip to content

Commit 746590d

Browse files
committed
Initial commit
0 parents  commit 746590d

35 files changed

+5815
-0
lines changed

.gitignore

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
*.pyc
2+
*.so
3+
*.pyd
4+
*~
5+
.#*
6+
*.lprof
7+
*.swp
8+
*.swo
9+
.DS_Store
10+
_build
11+
12+
dist/
13+
MANIFEST
14+
auto_examples/
15+
*.pdf
16+
pip-log.txt
17+
.coverage
18+
coverage
19+
*.py,cover
20+
tags
21+
coverages
22+
.coverage
23+
*.prof
24+
.tox/
25+
26+
*.nt.bz2
27+
*.tar.gz
28+
*.tgz
29+
30+
*.prefs
31+
.pydevproject
32+
.idea

README.rst

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
=============================
2+
Statistics in Python
3+
=============================
4+
5+
License
6+
----------
7+
8+
All code and material is licensed under a
9+
10+
Creative Commons Attribution 3.0 United States License (CC-by)
11+
http://creativecommons.org/licenses/by/3.0/us
12+
13+
14+
Building instructions
15+
----------------------
16+
17+
To generate the html output for on-screen display, Type::
18+
19+
make html
20+
21+
the generated html files can be found in ``build/html``
22+
23+
The first build takes a long time, but information is cached and
24+
subsequent builds will be faster.
25+
26+
Requirements
27+
............
28+
29+
*probably incomplete*
30+
31+
* make
32+
* sphinx (>= 1.0)
33+
* matplotlib
34+
* statsmodel
35+
* pandas
36+
37+

_includes/big_toc_css.rst

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
..
2+
File to ..include in a document with a big table of content, to give
3+
it 'style'
4+
5+
.. raw:: html
6+
7+
<style type="text/css">
8+
div.bodywrapper blockquote {
9+
margin: 0 ;
10+
}
11+
12+
div.toctree-wrapper ul {
13+
margin-top: 0 ;
14+
margin-bottom: 0 ;
15+
padding-left: 10px ;
16+
}
17+
18+
li.toctree-l1 {
19+
padding: 0 0 0.5em 0 ;
20+
list-style-type: none;
21+
font-size: 150% ;
22+
font-weight: bold;
23+
}
24+
25+
li.toctree-l1 ul {
26+
padding-left: 40px ;
27+
}
28+
29+
li.toctree-l2 {
30+
font-size: 70% ;
31+
list-style-type: square;
32+
font-weight: normal;
33+
}
34+
35+
li.toctree-l3 {
36+
font-size: 85% ;
37+
list-style-type: circle;
38+
font-weight: normal;
39+
}
40+
41+
</style>
42+
43+
44+

_includes/bigger_toc_css.rst

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
..
2+
File to ..include in a document with a very big table of content, to
3+
give it 'style'
4+
5+
.. raw:: html
6+
7+
<style type="text/css">
8+
div.bodywrapper blockquote {
9+
margin: 0 ;
10+
}
11+
12+
div.toctree-wrapper ul {
13+
margin: 0 ;
14+
padding-left: 0px ;
15+
}
16+
17+
li.toctree-l1 {
18+
padding: 0 ;
19+
list-style-type: none;
20+
font-size: 150% ;
21+
font-family: Arial, sans-serif;
22+
background-color: #BED4EB;
23+
font-weight: normal;
24+
color: #212224;
25+
margin-left : 0;
26+
font-weight: bold;
27+
}
28+
29+
li.toctree-l1 a {
30+
padding: 0 0 0 10px ;
31+
}
32+
33+
li.toctree-l2 {
34+
padding: 0.25em 0 0.25em 0 ;
35+
list-style-type: none;
36+
background-color: #FFFFFF;
37+
font-size: 90% ;
38+
font-weight: bold;
39+
}
40+
41+
li.toctree-l2 ul {
42+
padding-left: 40px ;
43+
}
44+
45+
li.toctree-l3 {
46+
font-size: 70% ;
47+
list-style-type: none;
48+
font-weight: normal;
49+
}
50+
51+
li.toctree-l4 {
52+
font-size: 85% ;
53+
list-style-type: none;
54+
font-weight: normal;
55+
}
56+
57+
</style>
58+
59+
60+

_sphinxext/README.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
FIXME: This directory is copied from the matplolib.
3+

_sphinxext/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)