-
Notifications
You must be signed in to change notification settings - Fork 370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add method to writetable for DataArray? #360
Comments
Only tangentially relevant, but @johnmyleswhite and I were just talking about the idea of splitting the DataArray type out if DataFrames into its own package (presumably called DataArrays). I think that we should definitely do this. |
Really? What would be returned when you index a single column from a |
DataFrames would depend on DataArrays but not vice versa. The pint is that there are use cases for the relatively simple functionality of DataArrays without all the rest of DataFrames. |
I vote to break DataArrays out from DataFrames. On Fri, Sep 13, 2013 at 11:44 AM, Stefan Karpinski <[email protected]
|
Thanks @StefanKarpinski, that makes sense. |
It seems weird that you can only export a
DataFrame
and not aDataArray
from within DataFrames (i.e. you have to usewritedlm
from Base to export an array). We could do:Or, we could modify
printtable
to have aDataArray
method to avoid theDataFrame(df)
type conversion.Of course, if I'm the only one that sees this as an issue, we can do nothing.
The text was updated successfully, but these errors were encountered: