You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+53-31Lines changed: 53 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,10 +8,11 @@ Features
8
8
^^^^^^^^
9
9
10
10
* Approximating sums
11
-
* Approximating proportions
12
11
* Approximating medians
13
-
* Approximating ratios
12
+
* Approximating percent change
14
13
* Approximating products
14
+
* Approximating proportions
15
+
* Approximating ratios
15
16
16
17
17
18
Installation
@@ -50,24 +51,6 @@ Accepts an open-ended set of paired lists, each expected to provide an estimate
50
51
19866960, 5437.757350231803
51
52
52
53
53
-
Approximating proportions
54
-
~~~~~~~~~~~~~~~~~~~~~~~~~
55
-
56
-
Calculate an estimate's proportion of another estimate and approximate the margin of error. Follows the bureau's `ACS handbook <https://www.documentcloud.org/documents/6177941-Acs-General-Handbook-2018-ch08.html>`_. Simply multiply the result by 100 for a percentage. Recommended when the first value is smaller than the second.
57
-
58
-
Accepts two paired lists, each expected to provide an estimate followed by its margin of error. The numerator goes in first. The denominator goes in second. In cases where the numerator is not a subset of the denominator, the bureau recommends using the approximate_ratio method instead.
Calculate the ratio between two estimates and approximate its margin of error. Follows the bureau's `ACS handbook <https://www.documentcloud.org/documents/6177941-Acs-General-Handbook-2018-ch08.html>`_.
112
+
Approximating percent change
113
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
132
114
133
-
Accepts two paired lists, each expected to provide an estimate followed by its margin of error. The numerator goes in first. The denominator goes in second. In cases where the numerator is a subset of the denominator, the bureau recommends uses the approximate_proportion method.
115
+
Calculates the percent change between two estimates and approximates its margin of error. Follows the bureau's `ACS handbook <https://www.documentcloud.org/documents/6177941-Acs-General-Handbook-2018-ch08.html>`_.
116
+
117
+
Accepts two paired lists, each expected to provide an estimate followed by its margin of error. The first input should be the earlier estimate in the comparison. The second input should be the later estimate.
118
+
119
+
Returns both values as percentages multiplied by 100.
@@ -161,6 +147,42 @@ Accepts two paired lists, each expected to provide an estimate followed by its m
161
147
61393366, 202289
162
148
163
149
150
+
Approximating proportions
151
+
~~~~~~~~~~~~~~~~~~~~~~~~~
152
+
153
+
Calculate an estimate's proportion of another estimate and approximate the margin of error. Follows the bureau's `ACS handbook <https://www.documentcloud.org/documents/6177941-Acs-General-Handbook-2018-ch08.html>`_. Simply multiply the result by 100 for a percentage. Recommended when the first value is smaller than the second.
154
+
155
+
Accepts two paired lists, each expected to provide an estimate followed by its margin of error. The numerator goes in first. The denominator goes in second. In cases where the numerator is not a subset of the denominator, the bureau recommends using the approximate_ratio method instead.
Calculate the ratio between two estimates and approximate its margin of error. Follows the bureau's `ACS handbook <https://www.documentcloud.org/documents/6177941-Acs-General-Handbook-2018-ch08.html>`_.
172
+
173
+
Accepts two paired lists, each expected to provide an estimate followed by its margin of error. The numerator goes in first. The denominator goes in second. In cases where the numerator is a subset of the denominator, the bureau recommends uses the approximate_proportion method.
0 commit comments