thaink² is a startup specializing in AI-driven time series forecasting and data solutions, empowering businesses to transform raw data into actionable insights effortlessly.
It puts at the disposal of technical community and SDK, where they can unlock the full potential of advanced predictive analytics to make data-driven decisions with confidence ( Machine learning, time series forecasting)
You will need an API key in order to be able to request the API, the key can be generated using the following link:
As a part of the time series forecasting, pre-processing plays a major role on the output quality.
- Anomaly detection & correction
- Missing values interpolation
- Level shift detection & correction
- Multiple choices of models
- Ensembling
- Automatic or manual model tuning
First install the following package
https://github.com/thaink2/th2analytics using the command
remotes::install_github("thaink2/th2analytics")Prepare your data and call the forecasting API, as illustrated below:
api_token <- "*****" # get your token here: https://clever.thaink2.fr/app_direct/th2token/
historical_data <- ggplot2::economics_long
th2fcast <- th2analytics::th2forecast_api(
input_data = historical_data,
api_token = api_token,
fcast_horizon = 30,
target_var = "value",
date_var = "date",
group_target = "variable",
models_list = c("xgboost")) # xgboost, random_forest, arima