vmzakharov / dataframe-ec

A tabular data structure (aka a data frame) based on the Eclipse Collections framework
MIT License
51 stars 10 forks source link

Add copy() function to the DataFrame class as discussed in issue #11 #13

Closed mehmandarov closed 1 year ago

mehmandarov commented 1 year ago

It is now possible to create a copy of a whole or parts of a DataFrame by calling copy("new name") and copy("new name", list-of-columns) methods that will return a new DataFrame with respectively all or selected columns from the original object.

vmzakharov commented 1 year ago

Thank you for your contribution, @mehmandarov