How to find the python for data science course last project 'pandas pandas pandas' | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How to find the python for data science course last project 'pandas pandas pandas'

I left it for solving it a next time but I'm not able to find it now.

28th Sep 2021, 11:39 AM
Elon
Elon - avatar
2 Answers
0
There is no such project, at least anymore. Sololearn has being updated, and that project might have being replaced with another one. Currently the last project for pandas in that course is "Covid 19 Data analysis".
28th Sep 2021, 12:10 PM
Aleksei Radchenkov
Aleksei Radchenkov - avatar
0
#This code goves the correct answer to pandas pandas pandas but it has extra brackets n = int(input()) import pandas as pd data=[] for i in range(n): data.append([float(i)for i in input().split()]) from sklearn.cluster import KMeans kmeans = KMeans(n_clusters=2) kmeans.fit(data) kmeans.predict(data) print(kmeans.cluster_centers_)
12th Jan 2023, 10:17 AM
CHARLES LEWIS
CHARLES LEWIS - avatar