How to Forecast Daily Bed Usage Using Scheduled Surgeries?
You work for a hospital that wants to optimize how it schedules operations. You need to create a model that uses the relationship between the number of surgeries scheduled and beds used. You want to predict how many beds will be needed for patients each day in advance based on the scheduled surgeries. You have one year of data for the hospital organized in 365 rows. The data includes the following variables for each day: • Number of scheduled surgeries • Number of beds occupied • Date You want to maximize the speed of model development and testing. What should you do?
Community Votes
68% of anonymous learners picked answer D. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
It tests recognizing a time-series forecasting scenario with external regressors, where the common trap is defaulting to standard regression due to the small dataset size and perceived simplicity.
This question tests selecting the correct Vertex AI AutoML Forecasting model for time-series prediction with external covariates. The community consensus favors Option D because it correctly treats daily bed occupancy as a forecasting task while incorporating scheduled surgeries as predictive features.
Option A (BigQuery ML Regression) is frequently chosen because candidates prioritize development speed and assume a simple linear relationship, overlooking that daily predictions over time require a forecasting approach that accounts for temporal patterns and future covariate inputs.
Community Discussion (17 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
Vertex AI AutoML Forecasting is explicitly designed for time-series problems where you predict a target variable over time using historical data and external covariates. In this scenario, "date" serves as the time column, "number of beds" is the target, and "number of scheduled surgeries" acts as an external covariate that drives future demand. AutoML automatically handles feature engineering, model selection, and hyperparameter tuning, directly satisfying the requirement to maximize development speed.Why the Other Options Are Wrong
Option A uses standard regression, which does not natively handle temporal dependencies or generate forecasts into the future without manual lagging adjustments. Option B (ARIMA in BigQuery ML) cannot incorporate external covariates like scheduled surgeries, making it unsuitable for this causal prediction. Option C is a standard tabular regression model, which again fails to treat the problem as a sequential time-series forecast and lacks built-in forecasting capabilities for future dates.Community Comment Notes
Several users initially chose A, arguing that 365 rows are too small for Vertex AI and that BigQuery ML offers faster iteration (Comments [1], [4], [11]). However, higher-voted responses emphasize that GCP's AutoML Forecasting supports small datasets and explicitly models time-series dynamics (Comment [2], [6]). Comment [8] correctly notes that standard regression misses temporal dependencies, while Comment [7] highlights that ARIMA lacks covariate support, reinforcing D as the only architecturally sound choice.Official Reference
Exam Strategy
Always identify whether a problem requires forecasting (predicting future values over time) versus static regression; if dates or timestamps are central to the prediction horizon, prioritize AutoML Forecasting or dedicated time-series tools. When external drivers influence the outcome, ensure your selected model supports covariates, as pure univariate models will miss critical predictive signals.
Related Analysis
Practice All PMLE Questions
Access 65 questions with complete answers and detailed explanations.
View Full PMLE Practice Test →