Feature/24 pandas plugin#137
Conversation
|
@rhenanbartels, thanks for your PR! I'm going to review it now, but you need to rebase since there are some conflicts between your branch and the current |
There was a problem hiding this comment.
As pandas is an optional dependency to rows, you need to put this import inside a try/except clause. Need also to import export_to_pandas.
|
@rhenanbartels, I just finished the code review. Please address the changes. ;-) Since this is the first plugin that does not use serialization/deserialization from/to a file (it just changes objects in memory), I don't know if the API should be the same. Thinking in maybe put it inside |
af1510c to
8a2365f
Compare
|
Yes, I was thinking about that, maybe a |
| yield list(data_frame) | ||
|
|
||
| for _, row in data_frame.iterrows(): | ||
| yield dataframe_row_to_list(row) |
| yield list(data_frame) | ||
|
|
||
| for _, row in data_frame.iterrows(): | ||
| yield dataframe_row_to_list(row) |
fa144f0 to
bbb2c57
Compare
Hi Álvaro, I've just finish the code to import/export from/to pandas DataFrame. Can you please review it?
Thanks in advance!