-
Notifications
You must be signed in to change notification settings - Fork 6
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
Breaking LabelledArrays
into a separate package
#41
Comments
@00krishna Thank you for your interest. I haven't carefully thought about the pros and cons of doing so yet. But the primary reason for |
Thanks @junyuan-chen this is helpful. Yeah, I was looking at Now I have not used |
One possibility is to make LabeledArrays.jl a subpackage that lives inside this repo. This means that it will has its own UUID and registered with |
Excellent. Yeah, that is totally fair. I appreciate your consideration. You are 100% correct that the issue seems to be that But certainly, take your time to consider what you think is possible. Thanks again for your time. |
Hello. I was wondering if there is any consideration about breaking
LabelledArrays
into its own package?The reason is that
LabelledArrays
provide a really nice functionality that could be used in something likeDataFrames.jl
. Say I have a dataframe that has a categorical column, such as the month of the year. Here is an example.Using numerical indices for categorical variables like month, makes it harder for users to read. Hence a more intuitive interface is to swap the view for the
month
variable to look like:We could potentially use
LabelledArrays
in a dataframe, but right now that array library is bundled with the fullReadStatTables.jl
package. Breaking theLabelledArray.jl
library could allow some flexibility for usingLabelledArrays
in other place.Please let me know if you can consider my request. Thank you.
The text was updated successfully, but these errors were encountered: