# Datetime partitioned projects

> Datetime partitioned projects - Learn how to set up and work with datetime partitioned projects in
> DataRobot.

This Markdown file sits beside the HTML page at the same path (with a `.md` suffix). It summarizes the topic and lists links for tools and LLM context.

Companion generated at `2026-04-24T16:03:56.287888+00:00` (UTC).

## Primary page

- [Datetime partitioned projects](https://docs.datarobot.com/en/docs/api/dev-learning/python/modeling/spec/datetime_partition.html): Full documentation for this topic (HTML).

## Sections on this page

- [Set up datetime partitioned projects](https://docs.datarobot.com/en/docs/api/dev-learning/python/modeling/spec/datetime_partition.html#setting-up-a-datetime-partitioned-project): In-page section heading.
- [Configure backtests](https://docs.datarobot.com/en/docs/api/dev-learning/python/modeling/spec/datetime_partition.html#configure-backtests): In-page section heading.
- [Model with datetime partitioned projects](https://docs.datarobot.com/en/docs/api/dev-learning/python/modeling/spec/datetime_partition.html#model-with-datetime-partitioned-projects): In-page section heading.
- [Accuracy over time plots](https://docs.datarobot.com/en/docs/api/dev-learning/python/modeling/spec/datetime_partition.html#accuracy-over-time-plots): In-page section heading.
- [Dates, datetimes, and durations](https://docs.datarobot.com/en/docs/api/dev-learning/python/modeling/spec/datetime_partition.html#dates-datetimes-and-durations): In-page section heading.

## Related documentation

- [Developer documentation](https://docs.datarobot.com/en/docs/api/index.html): Linked from this page.
- [Developer learning](https://docs.datarobot.com/en/docs/api/dev-learning/index.html): Linked from this page.
- [Python API client user guide](https://docs.datarobot.com/en/docs/api/dev-learning/python/index.html): Linked from this page.
- [Modeling](https://docs.datarobot.com/en/docs/api/dev-learning/python/modeling/index.html): Linked from this page.
- [Specialized workflows](https://docs.datarobot.com/en/docs/api/dev-learning/python/modeling/spec/index.html): Linked from this page.
- [DatetimePartitioningSpecification](https://docs.datarobot.com/en/docs/api/reference/sdk/projects.html#datetime-part-spec): Linked from this page.
- [Model.train_datetime](https://docs.datarobot.com/en/docs/api/reference/sdk/datarobot-models.html#datarobot.models.DatetimeModel.train_datetime): Linked from this page.

## Documentation content

# Datetime partitioned projects

If your dataset is modeling events taking place over time, datetime partitioning may be appropriate.
Datetime partitioning ensures that when partitioning the dataset for training and validation, rows are ordered according to the value of the date partition feature.

## Set up datetime partitioned projects

After creating a project and before setting the target, create a [DatetimePartitioningSpecification](https://docs.datarobot.com/en/docs/api/reference/sdk/projects.html#datetime-part-spec) to define how the project should be partitioned.
By passing the specification into `DatetimePartitioning.generate`, the full partitioning can be previewed before finalizing the partitioning.
After verifying that the partitioning is correct for the project dataset, pass the specification into `Project.analyze_and_model` via the `partitioning_method` argument.
Alternatively, as of v3.0, by using `Project.set_datetime_partitioning()`, the partitioning (and individual options of the partitioning specification) can be updated (with repeated method calls) up until calling `Project.analyze_and_model`.
Once modeling begins, the project can be used as normal.

The following code block shows the basic workflow for creating datetime partitioned projects.

```
import datarobot as dr

project = dr.Project.create('some_data.csv')
spec = dr.DatetimePartitioningSpecification('my_date_column')
# can customize the spec as needed

partitioning_preview = dr.DatetimePartitioning.generate(project.id, spec)
# the preview generated is based on the project's data

print(partitioning_preview.to_dataframe())
# hmm ... I want more backtests
spec.number_of_backtests = 5
partitioning_preview = dr.DatetimePartitioning.generate(project.id, spec)
print(partitioning_preview.to_dataframe())
# looks good
project.analyze_and_model('target_column')

# As of v3.0, ``Project.set_datetime_partitioning()`` and ``Project.list_datetime_partition_spec()``
# are available as an alternative:

# view settings
project.list_datetime_partition_spec()
# maybe I want to also disable holdout before starting modeling
project.set_datetime_partitioning(disable_holdout=True)
# view settings
project.list_datetime_partition_spec()
# all of the settings look good
# don't need to pass the spec into ``analyze_and_model`` because it's already been set
project.analyze_and_model('target_column')

# I can retrieve the partitioning settings after the target has been set too
partitioning = dr.DatetimePartitioning.get(project.id)
```

### Configure backtests

Backtests are configurable using one of two methods:

Method 1:

> index (int): The index from zero of this backtest.gap_duration (str): A duration string such as those returned by thepartitioning_methods.construct_duration_stringhelper method. This represents the gap between training and validation scoring data for this backtest.validation_start_date (datetime.datetime): Represents the start date of the validation scoring data for this backtest.validation_duration (str): A duration string such as those returned by thepartitioning_methods.construct_duration_stringhelper method. This represents the desired duration of the validation scoring data for this backtest.importdatarobotasdrfromdatetimeimportdatetimepartitioning_spec=dr.DatetimePartitioningSpecification(backtests=[# modify the first backtest using option 1dr.BacktestSpecification(index=0,gap_duration=dr.partitioning_methods.construct_duration_string(),validation_start_date=datetime(year=2010,month=1,day=1),validation_duration=dr.partitioning_methods.construct_duration_string(years=1),)],# other partitioning settings...)

Method 2 (New in version v2.20):

> validation_start_date (datetime.datetime): Represents the start date of the validation scoring data for this backtest.validation_end_date (datetime.datetime): Represents the end date of the validation scoring data for this backtest.primary_training_start_date (datetime.datetime): Represents the desired start date of the training partition for this backtest.primary_training_end_date (datetime.datetime): Represents the desired end date of the training partition for this backtest.importdatarobotasdrfromdatetimeimportdatetimepartitioning_spec=dr.DatetimePartitioningSpecification(backtests=[# modify the first backtest using option 2dr.BacktestSpecification(index=0,primary_training_start_date=datetime(year=2005,month=1,day=1),primary_training_end_date=datetime(year=2010,month=1,day=1),validation_start_date=datetime(year=2010,month=1,day=1),validation_end_date=datetime(year=2011,month=1,day=1),)],# other partitioning settings...)

Note that Method 2 allows you to directly configure the start and end dates of each partition, including the training partition.
The gap partition is calculated as the time between `primary_training_end_date` and `validation_start_date`.
Using the same date for both `primary_training_end_date` and `validation_start_date` will result in no gap being created.

After configuring backtests, you can set `use_project_settings` to `True` in calls to [Model.train_datetime](https://docs.datarobot.com/en/docs/api/reference/sdk/datarobot-models.html#datarobot.models.DatetimeModel.train_datetime).
This will create models that are trained and validated using your custom backtest training partition start and end dates.

## Model with datetime partitioned projects

While `Model` objects can still be used to interact with the project, [DatetimeModel](https://docs.datarobot.com/en/docs/api/reference/sdk/datarobot-models.html#datetime-mod) objects, which are only retrievable from datetime partitioned projects, provide more information including which date ranges and how many rows are used in training and scoring the model as well as scores and statuses for individual backtests.

The autopilot workflow is the same as for other projects, but to manually train a model, `Project.train_datetime` and `Model.train_datetime` should be used in the place of `Project.train` and `Model.train`.
To create frozen models, `Model.request_frozen_datetime_model` should be used in place of `DatetimeModel.request_frozen_datetime_model`.
Unlike other projects, to trigger computation of scores for all backtests use `DatetimeModel.score_backtests` instead of using the `scoring_type` argument in the `train` methods.

## Accuracy over time plots

For datetime partitioned model you can retrieve the Accuracy over Time plot.
To do so use [DatetimeModel.get_accuracy_over_time_plot](https://docs.datarobot.com/en/docs/api/reference/sdk/datarobot-models.html#datarobot.models.DatetimeModel.get_accuracy_over_time_plot).
You can also retrieve the detailed metadata using [DatetimeModel.get_accuracy_over_time_plots_metadata](https://docs.datarobot.com/en/docs/api/reference/sdk/datarobot-models.html#datarobot.models.DatetimeModel.get_accuracy_over_time_plots_metadata), and the preview plot using [DatetimeModel.get_accuracy_over_time_plot_preview](https://docs.datarobot.com/en/docs/api/reference/sdk/datarobot-models.html#datarobot.models.DatetimeModel.get_accuracy_over_time_plot_preview).

## Dates, datetimes, and durations

When specifying a date or datetime for datetime partitioning, the client expects to receive and will return a `datetime`.
Timezones may be specified, and will be assumed to be UTC if left unspecified.
All dates returned from DataRobot are in UTC with a timezone specified.

Datetimes may include a time, or specify only a date; however, they may have a non-zero time component only if the partition column included a time component in its date format.
If the partition column included only dates like “24/03/2015”, then the time component of any datetimes, if present, must be zero.

When date ranges are specified with a start and an end date, the end date is exclusive, so only dates earlier than the end date are included, but the start date is inclusive, so dates equal to or later than the start date are included.
If the start and end date are the same, then no dates are included in the range.

Durations are specified using a subset of ISO8601.
Durations will be of the form `PnYnMnDTnHnMnS` where each “n” may be replaced with an integer value.
Within the duration string,

> nY represents the number of yearsthe nM following the “P” represents the number of monthsnD represents the number of daysnH represents the number of hoursthe nM following the “T” represents the number of minutesnS represents the number of seconds

and “P” is used to indicate that the string represents a period and “T” indicates the beginning of the time component of the string.
Any section with a value of 0 may be excluded.
As with datetimes, if the partition column did not include a time component in its date format, the time component of any duration must be either unspecified or consist only of zeros.

Example Durations:

> “P3Y6M” (three years, six months)“P1Y0M0DT0H0M0S” (one year)“P1Y5DT10H” (one year, 5 days, 10 hours)

[datarobot.helpers.partitioning_methods.construct_duration_string](https://docs.datarobot.com/en/docs/api/reference/sdk/projects.html#dur-string-helper) is a helper method that can be used to construct appropriate duration strings.
