All Questions
2 questions
0
votes
0
answers
304
views
How does pandas return 'data' attribute of DataFrame object upon creation of the object?
I was going through and trying to understand the implementation of the Pandas Data Frame here: https://github.com/pandas-dev/pandas/blob/v0.22.0/pandas/core/frame.py#L236
A data frame can be created ...
2
votes
1
answer
2k
views
What does the nrows argument for from_records() do in pandas?
I am trying to learn how to submit a Pull-Request to an open-source project.
So I chose the issue #23455 from pandas-dev. It is a simple documentation error. However I realized that I have no idea ...