River Flow
The measures of the annual minimum mean daily flows, in cubic meters per second, of the Mahanadi River in central India:
data = ExampleData[{"Statistics", "MahanadiRiverFlow"}]mean = Mean[data];
data0 = data - mean;eproc = EstimatedProcess[data0, FARIMAProcess[4, 3]]ListPlot[CorrelationFunction[#, {0, 10}]& /@ {TemporalData@data, eproc}, PlotRange -> All, PlotStyle -> PointSize[Large], Filling -> 1 -> {2}, PlotLegends -> Placed[PointLegend[{"Data", "Model"}, LegendFunction -> "Frame", LegendLayout -> "Row"], {Center, Top}], PlotLabel -> "Correlation Function", ImageSize -> 400]forecast = TimeSeriesForecast[eproc, data0, {0, 10}] + meanListLinePlot[{TemporalData@data, forecast}, Filling -> Axis, PlotLegends -> Placed[LineLegend[{"Data", "Forecast"}, LegendFunction -> "Frame"], {Right, Top}], PlotLabel -> "Annual Minimum Mean Daily Flows", ImageSize -> 400]