Replies: 1 comment
-
I don't think so, unfortunately. There are utilities for going the other
way in the conversion package. This would be a good addition.
…On Tue, Jan 11, 2022 at 4:44 PM Martin Raedel ***@***.***> wrote:
Is there a convenient possibility to create a Table by means of a
two-dimensional array of values and a one dimensional array of column names?
E.g.
double[][] data = new double[][]{{0.1,0.2,0.3},{0.2,0.3,0.4},{0.1,0.3,0.4}};
String[] columnNames = new String[]{"x","y","z"};
Table.create("Test)
.fromColumns(data,columnNames);
What is the most convenient way to this currently? I would suspect there
is a more elegant way than to extract the columns from the array?
—
Reply to this email directly, view it on GitHub
<#1042>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AA2FPAV7ZOKUTAO6PEGNVUDUVSQFBANCNFSM5LXMTXOA>
.
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 are subscribed to this thread.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
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a convenient possibility to create a
Table
by means of a two-dimensional array of values and a one dimensional array of column names?E.g.
What is the most convenient way to this currently? I would suspect there is a more elegant way than to extract the columns from the array?
Beta Was this translation helpful? Give feedback.
All reactions