Code Challenges
- FizzBuzz
- Mean of a List
- Median of a List
- Variance of a List
- Standard Deviation of a List
- Sample Covariance
- Correlation Coefficient
- Simple Linear Regression
- Vector Dot Product
- Random Matrix
- Save
- Run All Cells
- Clear All Output
- Runtime
- Download
- Difficulty Rating
Loading Runtime
Create a function called mean_list
.
This function will be passed a list of numbers and should return the mean (or average) of the list.
Example:
mean_list([3,7,5,8,9,4,4,7])
Returns: 5.875
Reset Code