From 2d5a66902ed9c726d171247be403a3580b4c974b Mon Sep 17 00:00:00 2001 From: clehensen Date: Wed, 6 Dec 2023 17:29:16 +0100 Subject: [PATCH] formatting of text --- examples/notebooks/introduction_enlyze_python_sdk.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/notebooks/introduction_enlyze_python_sdk.ipynb b/examples/notebooks/introduction_enlyze_python_sdk.ipynb index 9b7a028..dc36f88 100644 --- a/examples/notebooks/introduction_enlyze_python_sdk.ipynb +++ b/examples/notebooks/introduction_enlyze_python_sdk.ipynb @@ -1933,12 +1933,12 @@ "id": "88bd9db6-6561-480f-bc96-ccddbe68cbcd", "metadata": {}, "source": [ - "The `get_timeseries` method returns the time series in the currently highest resolution (10 seconds). For a long period and many variables, this quickly results in a large amount of data. Due to the size of the data, there might be a noticeable delay in receiving the results, and in some cases, it may even cause a request timeout.\n", + "The `get_timeseries` method returns the time series data in the currently highest resolution (10 seconds). For a long period and many variables, this quickly results in a large amount of data. Due to the size of the data, there might be a noticeable delay in receiving the results, and in some cases, it may even cause a request timeout.\n", "\n", "The `get_timeseries_with_resampling` method allows for a higher control over the way in which the data is retrieved. By specifying a resampling method and a resampling interval, the amount of data can be adjusted for the use case. Resampling happens on the server-side and thus reduces the payload.\n", "\n", "\n", - "A separate resampling method must be specified for each variable. This is necessary because not every resampling method is available for every data type. For example, categorical data types such as strings can only be aggregated with 'first', 'last' or 'count'. You can find all available resampling methods [in our documentation](https://enlyze-python.readthedocs.io/en/latest/models.html#enlyze.models.ResamplingMethod)." + "A separate resampling method must be specified for each variable. This is necessary because not every resampling method is available for every data type. For example, categorical data types such as strings can only be aggregated with `first`, `last` or `count`. You can find all available resampling methods [in our documentation](https://enlyze-python.readthedocs.io/en/latest/models.html#enlyze.models.ResamplingMethod)." ] }, {