{"id":1420,"date":"2022-07-21T12:51:46","date_gmt":"2022-07-21T12:51:46","guid":{"rendered":"https:\/\/ignos.blog\/machine-learning-sales-prediction"},"modified":"2025-01-16T15:25:27","modified_gmt":"2025-01-16T15:25:27","slug":"machine-learning-sales-prediction","status":"publish","type":"post","link":"https:\/\/ignos.blog\/en\/machine-learning-sales-prediction","title":{"rendered":"Sales prediction using Machine Learning"},"content":{"rendered":"\n<p>One of the facilities offered by<strong>Machine Learning (ML<\/strong>) is the possibility of making time series predictions. To cite some applications, predictions of economic, weather or climate, health, or business indicators. <\/p>\n\n<p>In the Business Intelligence (BI) environment, a type of prediction that would be of great value could be the prediction of sales. This prediction, for example, would allow us, among other things, to efficiently manage procurement, stock, logistics or rethink marketing actions. <\/p>\n\n<h2 class=\"wp-block-heading\" id=\"h-algoritmos-de-prediccion\">Prediction algorithms<\/h2>\n\n<p>As mentioned in the article <a href=\"https:\/\/ignos.blog\/en\/application-of-artificial-intelligence-in-bi\">Artificial Intelligence applied to BI<\/a>, there are currently multiple tools available to develop Machine Learning algorithms, many of which are accessible to small and medium-sized companies.<\/p>\n\n<p>For time series prediction we can currently rely on algorithms based on &#8220;classical&#8221; statistics, such as ARIMA, Exponential Smoothing, Linear Regression Model or Random Forest, and algorithms based on neural networks such as Classical Recurrent Networks, LSTM, N-Beats, or Transformer type models, for example.<\/p>\n\n<p><\/p><p align=\"center\">\n<iframe loading=\"lazy\" width=\"560\" height=\"315\" src=\"https:\/\/www.youtube-nocookie.com\/embed\/ub8JPnfWrOM?controls=0\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen=\"\"><\/iframe>\n<\/p>\n\n<p>Many of the breakthroughs that are taking some AI applications such as natural language processing (NLP) by leaps and bounds are being made possible by the emergence of Transformers. Broadly speaking, this model includes attentional mechanisms to determine which information or elements are relevant and which are not. Transformers are proving successful in more and more applications such as computer vision. This technique competes with the most widely used convolutional networks or even, in the case in point, in the prediction of time series.   <\/p>\n\n<h3 class=\"wp-block-heading\" id=\"h-temporal-fusion-transformer\">Temporary Fusion Transformer<\/h3>\n\n<p>Going further in our goal of predicting our organization&#8217;s sales, a new neural network model has appeared, the Temporal Fusion Transformer (TFT), which precisely combines mechanisms from several previous models, including LSTM-type layers and the attentional components of the Transformers (Attention Heads).  <\/p>\n\n<p>One of the advantages offered by neural models such as TFT over non-neural models is the possibility of being trained on more than one time series. They even offer the possibility of making predictions on series with which the network has not been trained. <\/p>\n\n<h2 class=\"wp-block-heading\" id=\"h-prediccion-de-ventas\">Sales forecasting<\/h2>\n\n<p>In our <a href=\"https:\/\/ignos.blog\/prediccion-de-ventas-caso-practico\">example for sales prediction<\/a>, we could train our network with the individual sales history by product, or even using series given by multiple dimensions such as the product category, the sales channel, the region or the country in which it is made, for example. Depending on the number of dimensions used in the training and the values that each of them can take, we could have as input a very significant number of time series, which used in the training of a model such as TFT would allow us to make the prediction on a specific dimension or on several of them. <\/p>\n\n<p>In deep learning, several models have shown improved prediction effectiveness after being trained with tens of thousands of time series.<\/p>\n\n<p>Another aspect that many Machine Learning models, and specifically TFT, allow us to support training not only based on the historical time series target, but also on other series, which although they are not prediction targets, could further improve the effectiveness of our model. These series called &#8220;covariates&#8221; can be known a priori (past covariates), as could be the case of industry sales, nationally or internationally, or the evolution of the economy in general. As a more concrete example, if our product were soft drinks or beers, it could be interesting to use as covariates the evolution of temperatures, or the planning of events such as concerts, special days, etc.    <\/p>\n\n<p>Many models also support known future covariates, such as weather forecasts for the next 7 days, for example.<\/p>\n\n<h3 class=\"wp-block-heading\" id=\"h-prediccion-probabilistica\">Probabilistic prediction<\/h3>\n\n<p>Some Machine Learning models available for time series prediction allow to do it in probabilistic terms, as opposed to classical or deterministic prediction. While the result of the prediction in the latter is a specific value for a given instant, in probabilistic prediction a range of possible values is given for that instant, with a certain degree of confidence, which will be more or less wide depending on the uncertainty that may exist in the prediction.   <\/p>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"500\" height=\"192\" src=\"https:\/\/ignos.blog\/wp-content\/uploads\/2022\/07\/probabilisticforecasting.jpg\" alt=\"Probabilistic Forecasting\" class=\"wp-image-779\" srcset=\"https:\/\/ignos.blog\/wp-content\/uploads\/2022\/07\/probabilisticforecasting.jpg 500w, https:\/\/ignos.blog\/wp-content\/uploads\/2022\/07\/probabilisticforecasting-300x115.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/><figcaption class=\"wp-element-caption\">Example of probabilistic prediction<\/figcaption><\/figure>\n<\/div>\n<p>This makes it possible to detect, for example, periods in which seasonality is high and the trend is very clear, giving narrower ranges, or on the contrary, periods where the variability of sales is greater throughout the history and which would suggest a deeper analysis to detect, for example, if there are covariates that could be interesting in those periods.<\/p>\n\n<h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2>\n\n<p>Concretely for a hypothetical case, we could therefore consider the training of a neural network based on the TFT model with multiple time series, whose training we will support with covariate type series both past and future.<\/p>\n\n<p>This requires analyzing and determining which target series or series would provide value for our organization if we had the ability to predict them and which other series could support their prediction. Ultimately achieving a useful tool that could be used for decision making. <\/p>\n\n<p>Some of the tools that greatly facilitate the training and prediction of time series and that are available for free are Darts and Pytorch-forecasting. Both are based on the Pytorch library and use the Python programming language. Pythorch together with Tensorflow are two of the most widely used frameworks in ML today.  <\/p>\n\n<p>In a future article<a href=\"https:\/\/ignos.blog\/prediccion-de-ventas-caso-practico\">(Sales Forecasting &#8211; Case Study<\/a>, <a href=\"https:\/\/ignos.blog\/prediccion-de-ventas-caso-practico-pt-2\">Sales Forecasting &#8211; Case Study Pt. 2<\/a>) we will describe a concrete case of sales forecasting using one of these tools.<\/p>\n\n<p class=\"has-text-align-center\"><a class=\"boton\" href=\"https:\/\/bi.ignos.com\/\">More information<\/a><\/p>\n<div class=\"shariff shariff-align-left shariff-widget-align-left\"><ul class=\"shariff-buttons theme-default orientation-horizontal buttonsize-medium\"><li class=\"shariff-button mastodon shariff-nocustomcolor\" style=\"background-color:#563ACC\"><a href=\"https:\/\/s2f.kytta.dev\/?text=Sales%20prediction%20using%20Machine%20Learning https%3A%2F%2Fignos.blog%2Fen%2Fmachine-learning-sales-prediction\" title=\"Compartir en Mastodon\" aria-label=\"Compartir en Mastodon\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#6364FF; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"75\" height=\"79\" viewBox=\"0 0 75 79\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M37.813-.025C32.462-.058 27.114.13 21.79.598c-8.544.621-17.214 5.58-20.203 13.931C-1.12 23.318.408 32.622.465 41.65c.375 7.316.943 14.78 3.392 21.73 4.365 9.465 14.781 14.537 24.782 15.385 7.64.698 15.761-.213 22.517-4.026a54.1 54.1 0 0 0 .01-6.232c-6.855 1.316-14.101 2.609-21.049 1.074-3.883-.88-6.876-4.237-7.25-8.215-1.53-3.988 3.78-.43 5.584-.883 9.048 1.224 18.282.776 27.303-.462 7.044-.837 14.26-4.788 16.65-11.833 2.263-6.135 1.215-12.79 1.698-19.177.06-3.84.09-7.692-.262-11.52C72.596 7.844 63.223.981 53.834.684a219.453 219.453 0 0 0-16.022-.71zm11.294 12.882c5.5-.067 10.801 4.143 11.67 9.653.338 1.48.471 3 .471 4.515v21.088h-8.357c-.07-7.588.153-15.182-.131-22.765-.587-4.368-7.04-5.747-9.672-2.397-2.422 3.04-1.47 7.155-1.67 10.735v6.392h-8.307c-.146-4.996.359-10.045-.404-15.002-1.108-4.218-7.809-5.565-10.094-1.666-1.685 3.046-.712 6.634-.976 9.936v14.767h-8.354c.109-8.165-.238-16.344.215-24.5.674-5.346 5.095-10.389 10.676-10.627 4.902-.739 10.103 2.038 12.053 6.631.375 1.435 1.76 1.932 1.994.084 1.844-3.704 5.501-6.739 9.785-6.771.367-.044.735-.068 1.101-.073z\"\/><defs><linearGradient id=\"paint0_linear_549_34\" x1=\"37.0692\" y1=\"0\" x2=\"37.0692\" y2=\"79\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#6364FF\"\/><stop offset=\"1\" stop-color=\"#563ACC\"\/><\/linearGradient><\/defs><\/svg><\/span><span class=\"shariff-text\">compartir<\/span>&nbsp;<\/a><\/li><li class=\"shariff-button facebook shariff-nocustomcolor\" style=\"background-color:#4273c8\"><a href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fignos.blog%2Fen%2Fmachine-learning-sales-prediction\" title=\"Compartir en Facebook\" aria-label=\"Compartir en Facebook\" role=\"button\" rel=\"nofollow\" class=\"shariff-link\" style=\"; background-color:#3b5998; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 18 32\"><path fill=\"#3b5998\" d=\"M17.1 0.2v4.7h-2.8q-1.5 0-2.1 0.6t-0.5 1.9v3.4h5.2l-0.7 5.3h-4.5v13.6h-5.5v-13.6h-4.5v-5.3h4.5v-3.9q0-3.3 1.9-5.2t5-1.8q2.6 0 4.1 0.2z\"\/><\/svg><\/span><span class=\"shariff-text\">compartir<\/span>&nbsp;<\/a><\/li><li class=\"shariff-button linkedin shariff-nocustomcolor\" style=\"background-color:#1488bf\"><a href=\"https:\/\/www.linkedin.com\/sharing\/share-offsite\/?url=https%3A%2F%2Fignos.blog%2Fen%2Fmachine-learning-sales-prediction\" title=\"Compartir en LinkedIn\" aria-label=\"Compartir en LinkedIn\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#0077b5; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 27 32\"><path fill=\"#0077b5\" d=\"M6.2 11.2v17.7h-5.9v-17.7h5.9zM6.6 5.7q0 1.3-0.9 2.2t-2.4 0.9h0q-1.5 0-2.4-0.9t-0.9-2.2 0.9-2.2 2.4-0.9 2.4 0.9 0.9 2.2zM27.4 18.7v10.1h-5.9v-9.5q0-1.9-0.7-2.9t-2.3-1.1q-1.1 0-1.9 0.6t-1.2 1.5q-0.2 0.5-0.2 1.4v9.9h-5.9q0-7.1 0-11.6t0-5.3l0-0.9h5.9v2.6h0q0.4-0.6 0.7-1t1-0.9 1.6-0.8 2-0.3q3 0 4.9 2t1.9 6z\"\/><\/svg><\/span><span class=\"shariff-text\">compartir<\/span>&nbsp;<\/a><\/li><li class=\"shariff-button info shariff-nocustomcolor\" style=\"background-color:#eee\"><a href=\"http:\/\/ct.de\/-2467514\" title=\"M\u00e1s informaciones\" aria-label=\"M\u00e1s informaciones\" role=\"button\" rel=\"noopener \" class=\"shariff-link\" style=\"; background-color:#fff; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 11 32\"><path fill=\"#999\" d=\"M11.4 24v2.3q0 0.5-0.3 0.8t-0.8 0.4h-9.1q-0.5 0-0.8-0.4t-0.4-0.8v-2.3q0-0.5 0.4-0.8t0.8-0.4h1.1v-6.8h-1.1q-0.5 0-0.8-0.4t-0.4-0.8v-2.3q0-0.5 0.4-0.8t0.8-0.4h6.8q0.5 0 0.8 0.4t0.4 0.8v10.3h1.1q0.5 0 0.8 0.4t0.3 0.8zM9.2 3.4v3.4q0 0.5-0.4 0.8t-0.8 0.4h-4.6q-0.4 0-0.8-0.4t-0.4-0.8v-3.4q0-0.4 0.4-0.8t0.8-0.4h4.6q0.5 0 0.8 0.4t0.4 0.8z\"\/><\/svg><\/span><\/a><\/li><\/ul><\/div>","protected":false},"excerpt":{"rendered":"<p>One of the facilities offered byMachine Learning (ML) is the possibility of making time series predictions. To cite some applications, predictions of economic, weather or<\/p>\n","protected":false},"author":2,"featured_media":1128,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_themeisle_gutenberg_block_has_review":false,"footnotes":""},"categories":[46,47,48],"tags":[],"class_list":["post-1420","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-artificial-intelligence-en","category-bi-en","category-big-data-en"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Sales prediction using Machine Learning - Ignos Blog<\/title>\n<meta name=\"description\" content=\"One of the facilities offered by Machine Learning is the possibility of making time series predictions, such as sales...\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ignos.blog\/en\/machine-learning-sales-prediction\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Sales prediction using Machine Learning\" \/>\n<meta property=\"og:description\" content=\"One of the facilities offered byMachine Learning (ML) is the possibility of making time series predictions. To cite some applications, predictions of\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ignos.blog\/en\/machine-learning-sales-prediction\" \/>\n<meta property=\"og:site_name\" content=\"Ignos Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-07-21T12:51:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-01-16T15:25:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ignos.blog\/wp-content\/uploads\/2022\/07\/20943734-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"2560\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"ignosblog\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ignosblog\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/ignos.blog\\\/en\\\/machine-learning-sales-prediction#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ignos.blog\\\/en\\\/machine-learning-sales-prediction\"},\"author\":{\"name\":\"ignosblog\",\"@id\":\"https:\\\/\\\/ignos.blog\\\/en#\\\/schema\\\/person\\\/1a5938d22bbcdc65527e74d23e620b69\"},\"headline\":\"Sales prediction using Machine Learning\",\"datePublished\":\"2022-07-21T12:51:46+00:00\",\"dateModified\":\"2025-01-16T15:25:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/ignos.blog\\\/en\\\/machine-learning-sales-prediction\"},\"wordCount\":887,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/ignos.blog\\\/en#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/ignos.blog\\\/en\\\/machine-learning-sales-prediction#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/ignos.blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/20943734-scaled.jpg\",\"articleSection\":[\"Artificial Intelligence\",\"BI\",\"Big Data\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/ignos.blog\\\/en\\\/machine-learning-sales-prediction#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/ignos.blog\\\/en\\\/machine-learning-sales-prediction\",\"url\":\"https:\\\/\\\/ignos.blog\\\/en\\\/machine-learning-sales-prediction\",\"name\":\"Sales prediction using Machine Learning - Ignos Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ignos.blog\\\/en#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/ignos.blog\\\/en\\\/machine-learning-sales-prediction#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/ignos.blog\\\/en\\\/machine-learning-sales-prediction#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/ignos.blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/20943734-scaled.jpg\",\"datePublished\":\"2022-07-21T12:51:46+00:00\",\"dateModified\":\"2025-01-16T15:25:27+00:00\",\"description\":\"One of the facilities offered by Machine Learning is the possibility of making time series predictions, such as sales...\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/ignos.blog\\\/en\\\/machine-learning-sales-prediction#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/ignos.blog\\\/en\\\/machine-learning-sales-prediction\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/ignos.blog\\\/en\\\/machine-learning-sales-prediction#primaryimage\",\"url\":\"https:\\\/\\\/ignos.blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/20943734-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/ignos.blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/20943734-scaled.jpg\",\"width\":2560,\"height\":2560,\"caption\":\"Sales Forecasting\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/ignos.blog\\\/en\\\/machine-learning-sales-prediction#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/ignos.blog\\\/en\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Sales prediction using Machine Learning\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/ignos.blog\\\/en#website\",\"url\":\"https:\\\/\\\/ignos.blog\\\/en\",\"name\":\"Ignos Blog\",\"description\":\"Convirtiendo problemas en retos. Te ayudamos con Big Data, IA, ML, Odoo, ...\",\"publisher\":{\"@id\":\"https:\\\/\\\/ignos.blog\\\/en#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/ignos.blog\\\/en?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/ignos.blog\\\/en#organization\",\"name\":\"Ignos\",\"url\":\"https:\\\/\\\/ignos.blog\\\/en\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/ignos.blog\\\/en#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/ignos.blog\\\/wp-content\\\/uploads\\\/2018\\\/05\\\/cropped-ignos-logotipo-rgb-72ppp-11.jpg\",\"contentUrl\":\"https:\\\/\\\/ignos.blog\\\/wp-content\\\/uploads\\\/2018\\\/05\\\/cropped-ignos-logotipo-rgb-72ppp-11.jpg\",\"width\":396,\"height\":158,\"caption\":\"Ignos\"},\"image\":{\"@id\":\"https:\\\/\\\/ignos.blog\\\/en#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/es.linkedin.com\\\/company\\\/ignos-estudio-de-ingenier-a-s.l.\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/ignos.blog\\\/en#\\\/schema\\\/person\\\/1a5938d22bbcdc65527e74d23e620b69\",\"name\":\"ignosblog\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Sales prediction using Machine Learning - Ignos Blog","description":"One of the facilities offered by Machine Learning is the possibility of making time series predictions, such as sales...","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/ignos.blog\/en\/machine-learning-sales-prediction","og_locale":"en_US","og_type":"article","og_title":"Sales prediction using Machine Learning","og_description":"One of the facilities offered byMachine Learning (ML) is the possibility of making time series predictions. To cite some applications, predictions of","og_url":"https:\/\/ignos.blog\/en\/machine-learning-sales-prediction","og_site_name":"Ignos Blog","article_published_time":"2022-07-21T12:51:46+00:00","article_modified_time":"2025-01-16T15:25:27+00:00","og_image":[{"width":2560,"height":2560,"url":"https:\/\/ignos.blog\/wp-content\/uploads\/2022\/07\/20943734-scaled.jpg","type":"image\/jpeg"}],"author":"ignosblog","twitter_card":"summary_large_image","twitter_misc":{"Written by":"ignosblog","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ignos.blog\/en\/machine-learning-sales-prediction#article","isPartOf":{"@id":"https:\/\/ignos.blog\/en\/machine-learning-sales-prediction"},"author":{"name":"ignosblog","@id":"https:\/\/ignos.blog\/en#\/schema\/person\/1a5938d22bbcdc65527e74d23e620b69"},"headline":"Sales prediction using Machine Learning","datePublished":"2022-07-21T12:51:46+00:00","dateModified":"2025-01-16T15:25:27+00:00","mainEntityOfPage":{"@id":"https:\/\/ignos.blog\/en\/machine-learning-sales-prediction"},"wordCount":887,"commentCount":0,"publisher":{"@id":"https:\/\/ignos.blog\/en#organization"},"image":{"@id":"https:\/\/ignos.blog\/en\/machine-learning-sales-prediction#primaryimage"},"thumbnailUrl":"https:\/\/ignos.blog\/wp-content\/uploads\/2022\/07\/20943734-scaled.jpg","articleSection":["Artificial Intelligence","BI","Big Data"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/ignos.blog\/en\/machine-learning-sales-prediction#respond"]}]},{"@type":"WebPage","@id":"https:\/\/ignos.blog\/en\/machine-learning-sales-prediction","url":"https:\/\/ignos.blog\/en\/machine-learning-sales-prediction","name":"Sales prediction using Machine Learning - Ignos Blog","isPartOf":{"@id":"https:\/\/ignos.blog\/en#website"},"primaryImageOfPage":{"@id":"https:\/\/ignos.blog\/en\/machine-learning-sales-prediction#primaryimage"},"image":{"@id":"https:\/\/ignos.blog\/en\/machine-learning-sales-prediction#primaryimage"},"thumbnailUrl":"https:\/\/ignos.blog\/wp-content\/uploads\/2022\/07\/20943734-scaled.jpg","datePublished":"2022-07-21T12:51:46+00:00","dateModified":"2025-01-16T15:25:27+00:00","description":"One of the facilities offered by Machine Learning is the possibility of making time series predictions, such as sales...","breadcrumb":{"@id":"https:\/\/ignos.blog\/en\/machine-learning-sales-prediction#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ignos.blog\/en\/machine-learning-sales-prediction"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ignos.blog\/en\/machine-learning-sales-prediction#primaryimage","url":"https:\/\/ignos.blog\/wp-content\/uploads\/2022\/07\/20943734-scaled.jpg","contentUrl":"https:\/\/ignos.blog\/wp-content\/uploads\/2022\/07\/20943734-scaled.jpg","width":2560,"height":2560,"caption":"Sales Forecasting"},{"@type":"BreadcrumbList","@id":"https:\/\/ignos.blog\/en\/machine-learning-sales-prediction#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/ignos.blog\/en"},{"@type":"ListItem","position":2,"name":"Sales prediction using Machine Learning"}]},{"@type":"WebSite","@id":"https:\/\/ignos.blog\/en#website","url":"https:\/\/ignos.blog\/en","name":"Ignos Blog","description":"Convirtiendo problemas en retos. Te ayudamos con Big Data, IA, ML, Odoo, ...","publisher":{"@id":"https:\/\/ignos.blog\/en#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ignos.blog\/en?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/ignos.blog\/en#organization","name":"Ignos","url":"https:\/\/ignos.blog\/en","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ignos.blog\/en#\/schema\/logo\/image\/","url":"https:\/\/ignos.blog\/wp-content\/uploads\/2018\/05\/cropped-ignos-logotipo-rgb-72ppp-11.jpg","contentUrl":"https:\/\/ignos.blog\/wp-content\/uploads\/2018\/05\/cropped-ignos-logotipo-rgb-72ppp-11.jpg","width":396,"height":158,"caption":"Ignos"},"image":{"@id":"https:\/\/ignos.blog\/en#\/schema\/logo\/image\/"},"sameAs":["https:\/\/es.linkedin.com\/company\/ignos-estudio-de-ingenier-a-s.l."]},{"@type":"Person","@id":"https:\/\/ignos.blog\/en#\/schema\/person\/1a5938d22bbcdc65527e74d23e620b69","name":"ignosblog"}]}},"_links":{"self":[{"href":"https:\/\/ignos.blog\/en\/wp-json\/wp\/v2\/posts\/1420","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ignos.blog\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ignos.blog\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ignos.blog\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/ignos.blog\/en\/wp-json\/wp\/v2\/comments?post=1420"}],"version-history":[{"count":1,"href":"https:\/\/ignos.blog\/en\/wp-json\/wp\/v2\/posts\/1420\/revisions"}],"predecessor-version":[{"id":1421,"href":"https:\/\/ignos.blog\/en\/wp-json\/wp\/v2\/posts\/1420\/revisions\/1421"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ignos.blog\/en\/wp-json\/wp\/v2\/media\/1128"}],"wp:attachment":[{"href":"https:\/\/ignos.blog\/en\/wp-json\/wp\/v2\/media?parent=1420"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ignos.blog\/en\/wp-json\/wp\/v2\/categories?post=1420"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ignos.blog\/en\/wp-json\/wp\/v2\/tags?post=1420"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}