using TimeSeriesClustering,CSV
#input_data=load_timeseries_data(:GEP_GER1)
ts_input_data = load_timeseries_data(:CEP_GER1; T=24, years=[2016])
When I run the code, Julia always displays the time series in my REPL. How do I cancel the output?
using TimeSeriesClustering,CSV
#input_data=load_timeseries_data(:GEP_GER1)
ts_input_data = load_timeseries_data(:CEP_GER1; T=24, years=[2016])
When I run the code, Julia always displays the time series in my REPL. How do I cancel the output?
The REPL almost always prints out the result of the last line of executed code. You can put a semicolon ;
on the end to suppress it.