Is it possible to create Histograms from a list?
I have data sets where data is in Columns. I want to create histograms for each parameter.I know that I could stack the data and us the following command:Current Data Table() << Distribution( Continuous Distribution( Column( :param_value ) ), By( :param_name ) );I would like to use a list to create the histograms as I have code to work on each column individually.I have tried the following with n...