What will be output of the following:
s = pd.Series([1,2,3,4,5])
print(s.size)
print(s.values)
Answers
Answered by
1
Answer:
Sïze will be - 5
"s.values" is used to see the pandas DataFrame in numpy arrays , but "s.values" will give an error in your case because it will give the numpy of array of pandas DataFrame not pandas Series and in your cöde you are using for series instead of DataFrame . so if you want to covert pandas series to Numpy array use this "s.to_numpy()" for more try döcumentation!
Similar questions
Biology,
21 days ago
History,
21 days ago
Computer Science,
21 days ago
English,
1 month ago
Physics,
8 months ago