PyDataSet columns

If you want the column names as a regular python list and not a java.util.Collections.UnmodifiableRandomAccessList then covert it using the “list” function like so:

column_headers = list(myPyDataSet.getUnderlyingDataset().getColumnNames())
1 Like