-
Notifications
You must be signed in to change notification settings - Fork 20
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
Reading from file to NamedArray #109
Comments
For missing values I edit the original function of dietercastel as follows:
However, the datatype of the named array should be set according to the original dataframe. |
Yes, documentation. I have to study how that works. Do you know of a recommended and hosted platform for that? |
Not really. I believe the documentation of registered packages appears in https://juliapackages.com/ if it is present in the Github repository. And documenter.jl can be used to make documentation. |
I think it is not necessary to master documenter.jl to write a formal, perfect documentation. If the usage of conversion between NamedArray and DataFrame can be added to the ReadMe file of this repository, that is good enough for now for people to learn it. I think your package is very important for Julia to attract data science users from Python Pandas and R, where data frame and matrix can be easily converted to each other and transposed without losing row names or column names. Thanks a lot for your work. |
Documentation should be added about the best ways to read from text file to NamedArray. My current plan is to first read a DataFrame via CSV.jl and then convert it using the function provided by dietercastel.
The text was updated successfully, but these errors were encountered: