Skip to content
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

Redesign ReadStatMeta and add ReadStatColMeta for DataAPI.jl v1.13 #6

Merged
merged 7 commits into from Nov 17, 2022

Commits on Nov 6, 2022

  1. Expose metadata via DataAPI.metadata

    Use the `metadata` function recently added to DataAPI to expose
    the contents of `ReadStatMeta`. This will allow e.g. `DataFrame` to import
    the metadata.
    
    The implementation is not super efficient as a new `Dict` is allocated for
    each column. If this turns out to be a problem it would be possible to
    create a special `AbstractDict` type that would expose the data without
    allocating, but this may be overkill. Also, if users mutate the returned
    metadata `Dict`s, the changes will have no effect on `ReadStatMeta`,
    except if they mutate the `Dicts` holding value labels.
    nalimilan authored and junyuan-chen committed Nov 6, 2022
    Configuration menu
    Copy the full SHA
    3ec444b View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2022

  1. Configuration menu
    Copy the full SHA
    d96dd01 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f6fc67a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b826c8d View commit details
    Browse the repository at this point in the history
  4. Fix more issues

    junyuan-chen committed Nov 9, 2022
    Configuration menu
    Copy the full SHA
    6dc02e8 View commit details
    Browse the repository at this point in the history
  5. Fix an issue

    junyuan-chen committed Nov 9, 2022
    Configuration menu
    Copy the full SHA
    5520ea4 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2022

  1. Update documentation

    junyuan-chen committed Nov 17, 2022
    Configuration menu
    Copy the full SHA
    d47bc11 View commit details
    Browse the repository at this point in the history