Data Science - Average of Rows Python project | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Data Science - Average of Rows Python project

Data Science - Average of Rows In a matrix, or 2-d array X, the averages (or means) of the elements of rows is called row means. Task Given a 2D array, return the rowmeans. Input Format First line: two integers separated by spaces, the first indicates the rows of matrix X (n) and the second indicates the columns of X (p) Next n lines: values of the row in X Output Format An numpy 1d array of values rounded to the second decimal. 2 2 1.5 1 2 2.9 Sample Output [1.25 2.45] Could anyone please help me with this project? I haven't found a way to solve tests 2 to 4 (1 and 5, yes). Thank you guys

1st Aug 2022, 7:24 PM
Luzardo Lopez
4 Answers
+ 2
Luzardo Lopez the end of module project 8 playground should be working again
9th Aug 2022, 1:06 PM
BroFar
BroFar - avatar
+ 1
Luzardo Lopez there currently is a bug in this project and the developers have been made aware.
2nd Aug 2022, 3:35 AM
BroFar
BroFar - avatar
+ 1
Thank you BroFar for the info
2nd Aug 2022, 12:02 PM
Luzardo Lopez
+ 1
Thank you BroFar for letting me know
10th Aug 2022, 3:38 AM
Luzardo Lopez