You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE MODEL
mindsdb.house_sales_modelFROM example_db
(SELECT*FROMdemo_data.house_sales)
PREDICT ma
ORDER BY saledate
GROUP BY type
WINDOW 8
HORIZON 4;
If do JOIN query like this:
SELECTm.saledateasdate, m.maas forecast
FROMmindsdb.house_sales_modelas m
JOINexample_db.demo_data.house_sales as t
WHEREt.saledate> LATEST ANDt.type='house';
then fist step will be FetchDataframeStep with query
SELECT DISTINCTt.typeAS type FROMdemo_data.house_salesAS t WHEREt.type='house'
The step is redundant, because initially query already contains filter by type. Will be good to skip this step.
The text was updated successfully, but these errors were encountered:
Let assume there are TS model created:
If do
JOIN
query like this:then fist step will be
FetchDataframeStep
with queryThe step is redundant, because initially query already contains filter by
type
. Will be good to skip this step.The text was updated successfully, but these errors were encountered: