Direct visualization of summary table results
I would like to know how to visualize aggregated results directly. For example, let's say I want to obtain the maximum value of the ethanol per batch (fermentation sample data set). As of today, I create a summary table or perform a tabulate analysis before doing the graph. Data Table( "Fermentation Process" ) << Summary(
Group( :BatchID ),
Max( :Ethanol ),
Freq( "None" ),
Weight( "None" )
)...
jan_kreuzmann