Column names mis-match when loading certain columns #78
Ossifragus
started this conversation in
General
Replies: 2 comments 7 replies
-
columns are loaded as specified in the order by |
Beta Was this translation helpful? Give feedback.
7 replies
-
Thank you
From: evalparse ***@***.***>
Sent: Wednesday, February 9, 2022 11:58
To: xiaodaigh/JDF.jl ***@***.***>
Cc: 4db83 ***@***.***>; Comment ***@***.***>
Subject: Re: [xiaodaigh/JDF.jl] Column names mis-match when loading certain columns (Discussion #78)
fixed by #81 <#81>
—
Reply to this email directly, view it on GitHub <#78 (reply in thread)> , or unsubscribe <https://github.com/notifications/unsubscribe-auth/AUGJQHWTOENBZJWUKRYNDILU2JCCXANCNFSM5M4ZHS5A> .
Triage notifications on the go with GitHub Mobile for iOS <https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675> or Android <https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub> .
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The relative order of the loaded columns seem to be always the same of the relative order the whole data (Is the order specified in the metadata?). For example with a
data
consisting two columns"col1"
and"col2"
, the codeJDF.load(data; cols = ["col1", "col2"])
loads the data correctly, but withJDF.load(data; cols = ["col2", "col1"])
the data columns and their names would not match.Please see the following example:
Beta Was this translation helpful? Give feedback.
All reactions