Easy
What does the following code do:
import pandas as pd
for bloc in pd.read_csv('Data\file.csv', chunksize = 5):
print("Nouveau bloc:")
print(bloc)
Author: W3D TeamStatus: PublishedQuestion passed 664 times
Edit
2
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about scikit-learn
7
What is the value of the decision threshold used with logistic regression in Scikit-learn?3
The choice of the centers of the initial clusters has no impact on the final result of the K-Means algorithm.3
Reshape a 2x4 array into a 2x2x2 array in scikit-learn2
Access the value located in the fifth row and the third column of df.2
The Pandas library does not allow grouping of data as we can do with the Group By clause of the SQL language.