You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would be nice if the results shown in the productTable and obsTable were sorted by observation and productFilename. The results would be easier to examine.
It's just a little complicated because the way the code is at the moment, the unwanted rows are not filtered out from the tables until within the call to the write() function. Might be better to cut the tables down to the wanted rows earlier, and then do something like the lines below, and then write the tables to the screen/files.
# Sort the productTable to make it easier to read
if "obsnum" in self.productTable.t and "obs_id" in self.productTable.t:
self.productTable.t.sort_values(by=["obsnum", "obs_id"], ascending=[True, True])
The text was updated successfully, but these errors were encountered:
Would be nice if the results shown in the productTable and obsTable were sorted by observation and productFilename. The results would be easier to examine.
It's just a little complicated because the way the code is at the moment, the unwanted rows are not filtered out from the tables until within the call to the write() function. Might be better to cut the tables down to the wanted rows earlier, and then do something like the lines below, and then write the tables to the screen/files.
The text was updated successfully, but these errors were encountered: