{"id":6270,"date":"2021-12-09T21:14:32","date_gmt":"2021-12-09T20:14:32","guid":{"rendered":"https:\/\/www.simtrade.fr\/blog_simtrade\/?p=6270"},"modified":"2021-12-09T21:14:32","modified_gmt":"2021-12-09T20:14:32","slug":"logistic-regression","status":"publish","type":"post","link":"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/","title":{"rendered":"Logistic Regression"},"content":{"rendered":"<p><a href=\"https:\/\/www.linkedin.com\/in\/jayati-walia\/\" target=\"_blank\" rel=\"noopener\"><img decoding=\"async\" style=\"padding: 5px\" title=\"\" src=\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/04\/img_SimTrade_Photo1_Jayati_Walia.png\" alt=\"Jayati WALIA\" width=\"133\" align=\"right\" \/><\/a><\/p>\n<p>In this article, <a href=\"https:\/\/www.linkedin.com\/in\/jayati-walia\/\" target=\"_blank\" rel=\"noopener\">Jayati WALIA<\/a> (ESSEC Business School, Grande Ecole &#8211; Master in Management, 2019-2022) presents an overview of logistic regression and its application in finance.<\/p>\n<h2>Introduction<\/h2>\n<p>Logistic regression is a predictive analysis regression method that is used in classification to determine whether an output that is categorical, belongs to a particular class or category. Mathematically, this means that the dependent variable in regression is dichotomous or binary i.e., it can take the values 0 or 1. Logistic regression is used to describe data and explain the relationship between one dependent binary variable and one or more nominal, ordinal, interval or ratio-level independent variables.<\/p>\n<p>For instance, consider a weather forecasting situation. If we wish to predict the likelihood of whether it will rain or not on a particular day, linear regression is not going to be of use in this scenario because our outcome or value of dependent variable is unbounded. On the other hand, a binary logistic regression model will provide with a classified outcome (1: it will rain; 0: it will not rain).<\/p>\n<p>Logistic regression analysis is valuable for predicting the likelihood of an event. It helps determine the probabilities between any two classes. In essence, logistic regression helps solve probability and classification problems.<\/p>\n<h2>Logistic Function<\/h2>\n<p>Logistic regression model uses the sigmoid function to map the output of a linear equation between 0 and 1. The sigmoid function is an S-shaped curve and can be expressed as:<\/p>\n<p style=\"text-align:center\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/11\/img_sigmoid_function.png\" alt=\"sigmoid function\" width=\"200\" height=\"100\" class=\"aligncenter size-full wp-image-6271\" \/><\/p>\n<p style=\"text-align:center\">Figure 1. Sigmoid function curve.<\/p>\n<p style=\"text-align:center\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/11\/img_sigmoid_function_curve.png\" alt=\"img_sigmoid_function_curve\" width=\"1529\" height=\"997\" class=\"aligncenter size-full wp-image-6276\" srcset=\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/11\/img_sigmoid_function_curve.png 1529w, https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/11\/img_sigmoid_function_curve-300x196.png 300w, https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/11\/img_sigmoid_function_curve-1024x668.png 1024w, https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/11\/img_sigmoid_function_curve-768x501.png 768w\" sizes=\"auto, (max-width: 1529px) 100vw, 1529px\" \/><\/p>\n<p style=\"text-align:center\">Source: computation by the author.<\/p>\n<p>For logistic regression, we initially model the relationship between the dependent and independent variables as a linear equation as follows:<\/p>\n<p style=\"text-align:center\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/11\/img_linear_equation_logistic_regression-300x55.png\" alt=\"linear equation for logistic regression\" width=\"300\" height=\"55\" class=\"aligncenter size-medium wp-image-6277\" srcset=\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/11\/img_linear_equation_logistic_regression-300x55.png 300w, https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/11\/img_linear_equation_logistic_regression.png 702w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/p>\n<p>wherein Y is the dependent variable (i.e., the variable we want to predict) and X is the explanatory variables (i.e., the variables we use to predict the dependent variable). \u03b2<sub>0<\/sub>, \u03b2<sub>1<\/sub>, \u03b2<sub>2<\/sub>\u2026 \u03b2<sub>N<\/sub> are regression coefficients that are generally estimated using the maximum likelihood estimation method.<\/p>\n<p>This equation is mapped to the sigmoid function to squeeze the value of the outcome (Y) from a large scale to within the range 0 \u2013 1. We get our logistic regression equation as:<\/p>\n<p style=\"text-align:center\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/11\/img_logistic_regression_equation-300x69.png\" alt=\"logistic regression equation\" width=\"300\" height=\"69\" class=\"aligncenter size-medium wp-image-6282\" srcset=\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/11\/img_logistic_regression_equation-300x69.png 300w, https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/11\/img_logistic_regression_equation.png 686w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/p>\n<p>The dependent variable Y is assumed to follow a Bernoulli distribution with parameter p defined as p = Probability(Y = 1). Thus, the main use-case of a logistic model is that with given observations of the variables (X<sub>1<\/sub>,X<sub>2<\/sub> \u2026, X<sub>N<\/sub>) we estimate the probability p that the outcome Y is equal to 1.<\/p>\n<p>Note that the logistic regression model is sensitive to outliers and the number of explanatory variables should be less than the total observations to avoid overfitting. The logistic regression model is generally combined with artificial neural networks to make it more suitable to assess complex relationships. In practice, it is performed using programming languages like Python and R which possess powerful libraries (packages) to evaluate the models.<\/p>\n<h2>Applications<\/h2>\n<p>Logistic regression is a relatively simple and efficient method for binary classification problems. It is a classification model that achieves very good performance with linearly separable classes or categories and is extensively employed in various industries such as medicine, gaming, hospitality, retail, etc.<\/p>\n<p>In finance, the logistic regression model is commonly used to model the credit risk of individuals and small and medium enterprises. For companies, this model is used to predict their bankruptcy probability. Such a method is called credit scoring. To construct a logistic regression model for credit scoring of corporate firms, the independent variables are usually financial ratios computed with the information contained in financial statements: EBIT margin, return on equity (RoE), debt to equity (D\/E), liquidity ratio, EBIT\/Total Assets, etc. Further predictive statistical metrics like p-value and correlation test for multicollinearity can be used to narrow down to the variables with most contribution to the model.<\/p>\n<h2>Related posts on the SimTrade blog<\/h2>\n<p>&nbsp;&nbsp;&nbsp;&#9654; Jayati WALIA <a href=\"https:\/\/www.simtrade.fr\/blog_simtrade\/linear-regression\/\" target=\"_parent\" rel=\"noopener\">Linear Regression<\/a><\/p>\n<p>&nbsp;&nbsp;&nbsp;&#9654; Jayati WALIA <a href=\"https:\/\/www.simtrade.fr\/blog_simtrade\/?p=5918&amp;preview=true\/\" target=\"_parent\" rel=\"noopener\">Credit risk<\/a><\/p>\n<p>&nbsp;&nbsp;&nbsp;&#9654; Jayati WALIA <a href=\"https:\/\/www.simtrade.fr\/blog_simtrade\/programming-languages-quants\/\" target=\"_parent\" rel=\"noopener\">Programming Languages for Quants<\/a><\/p>\n<h2>Useful resources<\/h2>\n<p>Wikipedia <a href=\"\/\/en.wikipedia.org\/wiki\/Maximum_likelihood_estimation\u201d\" target=\"_blank\" rel=\"noopener\">Maximum Likelihood Estimation<\/a><\/p>\n<p>Towards Data Science <a href=\"\u201d\" target=\"_blank\" rel=\"noopener\">Logistic Regression<\/a><\/p>\n<h2>About the author<\/h2>\n<p>The article was written in November 2021 by <a href=\"https:\/\/www.linkedin.com\/in\/jayati-walia\/\" target=\"_blank\" rel=\"noopener\">Jayati WALIA<\/a> (ESSEC Business School, <i>Grande Ecole<\/i> Program &#8211; Master in Management, 2019-2022).<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, Jayati WALIA (ESSEC Business School, Grande Ecole &#8211; Master in Management, 2019-2022) presents an overview of logistic regression and its application in finance. Introduction Logistic regression is a predictive analysis regression method that is used in classification to determine whether an output that is categorical, belongs to a particular class or category. &#8230; <a title=\"Logistic Regression\" class=\"read-more\" href=\"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/\" aria-label=\"Read more about Logistic Regression\">Read more<\/a><\/p>\n","protected":false},"author":33,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[5,10],"tags":[155,156,358,532],"class_list":["post-6270","post","type-post","status-publish","format-standard","hentry","category-contributors","category-financial-techniques","tag-credit-risk","tag-credit-scoring","tag-logistic-regression","tag-sigmoid"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.3 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Logistic Regression - SimTrade blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Logistic Regression\" \/>\n<meta property=\"og:description\" content=\"In this article, Jayati WALIA (ESSEC Business School, Grande Ecole &#8211; Master in Management, 2019-2022) presents an overview of logistic regression and its application in finance. Introduction Logistic regression is a predictive analysis regression method that is used in classification to determine whether an output that is categorical, belongs to a particular class or category. ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/\" \/>\n<meta property=\"og:site_name\" content=\"SimTrade blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/fr-fr.facebook.com\/simtrade.fr\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-12-09T20:14:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/04\/img_SimTrade_Photo1_Jayati_Walia.png\" \/>\n<meta name=\"author\" content=\"Jayati WALIA\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@simtrade\" \/>\n<meta name=\"twitter:site\" content=\"@simtrade\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jayati WALIA\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/\"},\"author\":{\"name\":\"Jayati WALIA\",\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/#\/schema\/person\/a199e505389f6cab66614a44f61923be\"},\"headline\":\"Logistic Regression\",\"datePublished\":\"2021-12-09T20:14:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/\"},\"wordCount\":674,\"publisher\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/04\/img_SimTrade_Photo1_Jayati_Walia.png\",\"keywords\":[\"Credit risk\",\"Credit scoring\",\"Logistic regression\",\"Sigmoid\"],\"articleSection\":[\"Contributors\",\"Financial techniques\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/\",\"url\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/\",\"name\":\"Logistic Regression - SimTrade blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/04\/img_SimTrade_Photo1_Jayati_Walia.png\",\"datePublished\":\"2021-12-09T20:14:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/#primaryimage\",\"url\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/04\/img_SimTrade_Photo1_Jayati_Walia.png\",\"contentUrl\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/04\/img_SimTrade_Photo1_Jayati_Walia.png\",\"width\":318,\"height\":339},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Logistic Regression\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/#website\",\"url\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/\",\"name\":\"SimTrade blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/#organization\",\"name\":\"SimTrade\",\"url\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2014\/01\/cropped-cropped-Banner_blog_SimTrade2.jpg\",\"contentUrl\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2014\/01\/cropped-cropped-Banner_blog_SimTrade2.jpg\",\"width\":940,\"height\":126,\"caption\":\"SimTrade\"},\"image\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/fr-fr.facebook.com\/simtrade.fr\/\",\"https:\/\/x.com\/simtrade\",\"https:\/\/www.linkedin.com\/company\/sim-trade\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/#\/schema\/person\/a199e505389f6cab66614a44f61923be\",\"name\":\"Jayati WALIA\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/7da394278c58bf56c2b6c77c7b2e4d12e4c592037e2f8f8768fbbbdb97475ac2?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/7da394278c58bf56c2b6c77c7b2e4d12e4c592037e2f8f8768fbbbdb97475ac2?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/7da394278c58bf56c2b6c77c7b2e4d12e4c592037e2f8f8768fbbbdb97475ac2?s=96&d=mm&r=g\",\"caption\":\"Jayati WALIA\"},\"url\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/author\/jwalia\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Logistic Regression - SimTrade blog","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:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/","og_locale":"en_US","og_type":"article","og_title":"Logistic Regression","og_description":"In this article, Jayati WALIA (ESSEC Business School, Grande Ecole &#8211; Master in Management, 2019-2022) presents an overview of logistic regression and its application in finance. Introduction Logistic regression is a predictive analysis regression method that is used in classification to determine whether an output that is categorical, belongs to a particular class or category. ... Read more","og_url":"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/","og_site_name":"SimTrade blog","article_publisher":"https:\/\/fr-fr.facebook.com\/simtrade.fr\/","article_published_time":"2021-12-09T20:14:32+00:00","og_image":[{"url":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/04\/img_SimTrade_Photo1_Jayati_Walia.png","type":"","width":"","height":""}],"author":"Jayati WALIA","twitter_card":"summary_large_image","twitter_creator":"@simtrade","twitter_site":"@simtrade","twitter_misc":{"Written by":"Jayati WALIA","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/#article","isPartOf":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/"},"author":{"name":"Jayati WALIA","@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/#\/schema\/person\/a199e505389f6cab66614a44f61923be"},"headline":"Logistic Regression","datePublished":"2021-12-09T20:14:32+00:00","mainEntityOfPage":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/"},"wordCount":674,"publisher":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/#organization"},"image":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/#primaryimage"},"thumbnailUrl":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/04\/img_SimTrade_Photo1_Jayati_Walia.png","keywords":["Credit risk","Credit scoring","Logistic regression","Sigmoid"],"articleSection":["Contributors","Financial techniques"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/","url":"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/","name":"Logistic Regression - SimTrade blog","isPartOf":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/#primaryimage"},"image":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/#primaryimage"},"thumbnailUrl":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/04\/img_SimTrade_Photo1_Jayati_Walia.png","datePublished":"2021-12-09T20:14:32+00:00","breadcrumb":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/#primaryimage","url":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/04\/img_SimTrade_Photo1_Jayati_Walia.png","contentUrl":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2021\/04\/img_SimTrade_Photo1_Jayati_Walia.png","width":318,"height":339},{"@type":"BreadcrumbList","@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.simtrade.fr\/blog_simtrade\/"},{"@type":"ListItem","position":2,"name":"Logistic Regression"}]},{"@type":"WebSite","@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/#website","url":"https:\/\/www.simtrade.fr\/blog_simtrade\/","name":"SimTrade blog","description":"","publisher":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.simtrade.fr\/blog_simtrade\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/#organization","name":"SimTrade","url":"https:\/\/www.simtrade.fr\/blog_simtrade\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/#\/schema\/logo\/image\/","url":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2014\/01\/cropped-cropped-Banner_blog_SimTrade2.jpg","contentUrl":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2014\/01\/cropped-cropped-Banner_blog_SimTrade2.jpg","width":940,"height":126,"caption":"SimTrade"},"image":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/fr-fr.facebook.com\/simtrade.fr\/","https:\/\/x.com\/simtrade","https:\/\/www.linkedin.com\/company\/sim-trade"]},{"@type":"Person","@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/#\/schema\/person\/a199e505389f6cab66614a44f61923be","name":"Jayati WALIA","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/7da394278c58bf56c2b6c77c7b2e4d12e4c592037e2f8f8768fbbbdb97475ac2?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/7da394278c58bf56c2b6c77c7b2e4d12e4c592037e2f8f8768fbbbdb97475ac2?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7da394278c58bf56c2b6c77c7b2e4d12e4c592037e2f8f8768fbbbdb97475ac2?s=96&d=mm&r=g","caption":"Jayati WALIA"},"url":"https:\/\/www.simtrade.fr\/blog_simtrade\/author\/jwalia\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-json\/wp\/v2\/posts\/6270","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-json\/wp\/v2\/users\/33"}],"replies":[{"embeddable":true,"href":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-json\/wp\/v2\/comments?post=6270"}],"version-history":[{"count":0,"href":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-json\/wp\/v2\/posts\/6270\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-json\/wp\/v2\/media?parent=6270"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-json\/wp\/v2\/categories?post=6270"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-json\/wp\/v2\/tags?post=6270"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}