I want to get a predicted value from the data statistics.
Is it possible to output the predicted value for each pattern from NO, 1, NO2 to No.3 like the following data?
------
no,time,pattern1,pattern2,pattern3,pattern4,pattern5,pattern6
1,2021/8/1,3,17,20,25,26,29
2,2021/8/2,11,12,21,30,28,11
・
・
------
is there any good methods for that?
Are you looking for a way to predict the value of each of the pattern columns for the next rows (dates) in your set, or the value for the next column for each row? Either way, you would need to look at trends in the data to see if any of the algorithms available would be suitable for your data, or determine ways to flatten your data to a prediction model could be applied.