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.md
+6-7Lines changed: 6 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,13 +11,13 @@ DumbPy is an alternative version of NumPy, which facilitates scientific computin
11
11
12
12
DumbPy Functions:
13
13
14
-
-Helper functions - these functions will test the inputted object, and will catch any input besides a list of numbers and produce suitable error messages. Additionally, there will be a helper function that will take user input on whether to flatten an inputted list of lists into one list.
14
+
-`support_functions` - these functions will test the inputted object, and will catch any input besides a list of numbers and produce suitable error messages. Additionally, there will be a helper function that will take user input on whether to flatten an inputted list of lists into one list.
15
15
16
-
-Mean - the mean function will calculate and return the mean, or the average, of the inputted numerical list.
16
+
-`arithmetic_mean` - the mean function will calculate and return the mean, or the average, of the inputted numerical list.
17
17
18
-
-Standard Deviation - the standard deviation function will calculate and return the standard deviation of the inputted numerical list.
18
+
-`std_deviation` - the standard deviation function will calculate and return the standard deviation of the inputted numerical list.
19
19
20
-
-Median - the median function will calculate and return the median value of the inputted numerical list
20
+
-`median` - the median function will calculate and return the median value of the inputted numerical list
21
21
22
22
As stated above, the NumPy package already exists and provides similar functions. NumPy can be found at the following link: <https://numpy.org/>. DumbPy is an alternative version, which is much simpler and has a narrower focus.
23
23
@@ -35,13 +35,12 @@ You can install this package into your preferred Python environment using pip:
35
35
$ pip install dumbpy
36
36
```
37
37
38
-
TODO: Add a brief example of how to use the package to this section
0 commit comments