Sadece basit bir doğrusal regresyon yapmaya çalışıyorum ama bu hataya şaşıyorum:
regr = LinearRegression()
regr.fit(df2.iloc[1:1000, 5].values, df2.iloc[1:1000, 2].values)
hangi üretir:
ValueError: Found arrays with inconsistent numbers of samples: [ 1 999]
Bu seçimler aynı boyutlara sahip olmalı ve uyuşuk diziler olmalı, peki neyi kaçırıyorum?