{"id":3586,"date":"2023-04-12T15:39:33","date_gmt":"2023-04-12T15:39:33","guid":{"rendered":"https:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/"},"modified":"2023-04-12T15:39:33","modified_gmt":"2023-04-12T15:39:33","slug":"using-azure-data-studio-notebooks-to-investigate-variable-correlations","status":"publish","type":"post","link":"https:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/","title":{"rendered":"Using Azure Data Studio Notebooks to investigate variable correlations"},"content":{"rendered":"<p>The objective of this exercise is to demonstrate creating an Azure Data Studio (ADS) Notebook using Python to query SQL Server and investigate correlations between variables. Variable correlation can be key to increasing the accuracy of a forecast or predicting potential outcome scenarios.<\/p>\n<p><strong>What is an Azure Data Studio Notebook?<\/strong><\/p>\n<p>Azure Notebooks is a Microsoft Azure <u>Platform as a Service<\/u> (PaaS) offering of Jupyter Notebooks. A \u201cJupyter\u201d Notebook is an open-source web application that lets you create and share documents containing live code, equations, visualizations, and narrative text. You can use ADS notebooks for data cleaning and transformation, numerical simulation, statistical modeling, data visualization, and machine learning (just to name a few).<\/p>\n<p><strong>Steps to create an ADS Notebook<\/strong><\/p>\n<p>To create an ADS notebook (from within Azure Data Studio), you simply select <strong>File<\/strong>, then <strong>New Notebook<\/strong>. Once you create a notebook, you\u2019ll need to select a \u201cnotebook kernel\u201d for the notebook to \u201cuse\u201d.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1923 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/12\/AZ1-min.jpg\" alt=\"\" width=\"900\" height=\"86\" \/><\/p>\n<p><strong>What is a notebook kernel?<\/strong><\/p>\n<p>A notebook kernel is\u00a0the \u201cengine\u201d that executes the code you add to the notebook. There are kernels for many languages available, for example the \u201cipython\u201d kernel (listed as \u201cPython 3\u201d) executes Python code. By default, the SQL kernel (for executing T-SQL queries for SQL Server) is selected.<\/p>\n<p>In this example, we\u2019ll change the kernel to Python 3. Once you select Python 3, you will need to configure Python for the notebook, by selecting the option to use either an <em>existing<\/em> Python installation (if Python is already installed) or create a new Python installation (if you select this option, Azure Data Studio will perform the Python installation for you). Once you select a kernel and save the notebook, when you reopen the notebook, the associated kernel will be automatically launched and be ready for use.<\/p>\n<p><strong>Adding Cells<\/strong><\/p>\n<p>Notebooks consist of a series of \u201ccells\u201d. Cells can be either TEXT or CODE. A cell is essentially a section or \u201cstep\u201d in a notebook. You can interleave code and text, but they are separate elements that format in whatever order you&#8217;ve placed them. Text cells allow you to easily document code in a notebook by adding \u201cMarkdown text blocks\u201d in between code cells. Like GitHub, Azure Data Studio notebooks use markdown language for formatting text cells.<\/p>\n<p>Let\u2019s start building this notebook by adding a new text cell by clicking the\u00a0<strong>+Cell<\/strong>\u00a0command in the toolbar and selecting\u00a0<strong>Text cell<\/strong>. The cell opens up in \u201cedit mode\u201d so you can type some (markdown) text. You can select either a rich text, markdown or \u201csplit view\u201d (of the cell) to see as you type text, which helps you to get the formatting just right.<\/p>\n<p><strong>Linking to External Information<\/strong><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1912 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/12\/AZ2-min.jpg\" alt=\"\" width=\"900\" height=\"206\" \/><\/p>\n<p>One of the \u201ccooler things\u201d about notebook text cells is that you can include a <em>reference link <\/em>within your text. So, for example, in the above image you can see that I\u2019ve added a text cell with a heading and then underneath, an additional note about Azure Notebooks. Since my audience may not have used notebooks before, I have inserted a reference link to a web page where they can read more information about Azure notebooks. To add a link, you just highlight the desired text and click the link icon, where you can paste in the appropriate URL:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1913 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/12\/AZ3-min.jpg\" alt=\"\" width=\"900\" height=\"303\" \/><\/p>\n<p><strong>Code Cells<\/strong><\/p>\n<p>Notebook code cells allow you to enter and run program code interactively within a notebook. You add a new code cell by clicking the\u00a0<strong>+Cell<\/strong>\u00a0command in the toolbar and then selecting\u00a0<strong>Code cell<\/strong>. Below, I\u2019ve added a code cell to import the python modules that I want to use later in the notebook (note that I have already installed these libraries into my environment).<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1914 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/12\/AZ4-min.jpg\" alt=\"\" width=\"900\" height=\"194\" \/><\/p>\n<p>If you are unsure if a module is installed, you can click on <strong>Manage packages <\/strong>(shown below) and then view all of the installed packages or, install something new by click <strong>Add new<\/strong>:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1915 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/12\/AZ5-min.jpg\" alt=\"\" width=\"622\" height=\"529\" \/><\/p>\n<p><strong>Getting Data<\/strong><\/p>\n<p>pyodbc is an open-source Python module that makes accessing ODBC (Open Database Connectivity) databases simple. Using pyodbc, you can easily connect Python applications to data sources with an ODBC driver.\u00a0In the code cell below, since I know it\u2019s already installed and we have imported it in the cell above, \u00a0I\u2019ve created both a connection to a SQL Server database named \u201cJimsData\u201d and a SQL command string to query a table named Correlations.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1916 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/12\/AZ6-min.jpg\" alt=\"\" width=\"900\" height=\"209\" \/><\/p>\n<p>In the code cell below, I execute the SQL command,\u00a0 return the data into a pandas DataFrame object (named \u201cmydf\u201d) and, just for clarity, the DataFrame is then printed using the command print(mydf):<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1917 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/12\/AZ7-min.jpg\" alt=\"\" width=\"900\" height=\"160\" \/><\/p>\n<p><strong>More Commentary<\/strong><\/p>\n<p>Even though I\u2019ve added markdown text between each of the \u201csteps\u201d in my Azure notebook, notice that I always include a number of comments within my code cells, typically explaining each logical or functional purpose. Between the markdown and the code comments, hopefully everything is quite clear.<\/p>\n<p><strong>Running Some Code<\/strong><\/p>\n<p>To run a single code cell, you click\u00a0<strong>Run cell<\/strong>\u00a0(the round black arrow) to the left of the cell or select the cell and press F5. You can run all the cells in the notebook by clicking\u00a0<strong>Run all<\/strong>\u00a0in the toolbar. If you \u201crun all\u201d the cells are run one at a time and execution will stop if an error is encountered in a cell. The results (or outputs) from a code cell are shown below the cell. You can \u201cclear\u201d the results of all the executed cells in the notebook by selecting the\u00a0<strong>Clear Results<\/strong>\u00a0button in the toolbar. The image below shows the above code cell and its output (the printed DataFrame) below it.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1918 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/12\/AZ8-min.jpg\" alt=\"\" width=\"900\" height=\"334\" \/><\/p>\n<p>In the next step, I added another text cell with a link to documentation on the python \u201ccorr\u201d function, which is then used in the code cell beneath it to create a correlation matrix &#8211; using the data sourced from SQL Server \u2013 which we previously loaded into a DataFrame. A correlation matrix is\u00a0a<strong> table showing correlation coefficients between variables<\/strong>. Each value in the table shows the correlation between two variables. A correlation matrix is used to summarize data, as an input into a more advanced analysis, and as a diagnostic for advanced analyses.<\/p>\n<p>Below is the text cell and then the code cell followed by its output.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1919 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/12\/AZ9-min.jpg\" alt=\"\" width=\"900\" height=\"241\" \/><\/p>\n<p><strong>Visualizing the Correlation Matrix<\/strong><\/p>\n<p>A heatmap\u00a0contains values representing various shades of the same color for each value to be plotted. Usually, the darker shades of the chart represent higher values than the lighter shade. A heatmap is often a good choice to better illustrate the correlation between variables based upon a correlation matrix. Like the previous group of cells, below I\u2019ve added a text cell referencing the seaborn heatmap function, followed by a code cell that implements that function using our generated correlation matrix (from the previous cell). The last line prints the heatmap.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1920 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/12\/AZ10-min.jpg\" alt=\"\" width=\"900\" height=\"171\" \/><\/p>\n<p>Again, we can click the cell run button to see the output of this code cell which is a generated heatmap of variable correlations:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1921 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/12\/AZ11-min.jpg\" alt=\"\" width=\"900\" height=\"388\" \/><\/p>\n<p>As a last step, I added a final text cell with a bit of a \u201cconclusion\u201d:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1922 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/12\/AZ12-min.jpg\" alt=\"\" width=\"900\" height=\"80\" \/><\/p>\n<p><strong>Final Thoughts<\/strong><\/p>\n<p>Azure Notebooks are a great option for sharing solutions to challenging problems since both working code and notes can easily be shared between individuals or teams for review, comment, and revision. Another valuable use case is to use Azure Notebooks to document a process or create a how-to guide for an important procedure.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The objective of this exercise is to demonstrate creating an Azure Data Studio (ADS) Notebook using Python to query SQL Server and investigate correlations between variables. Variable correlation can be key to increasing the accuracy of a forecast or predicting potential outcome scenarios. What is an Azure Data Studio Notebook? Azure Notebooks is a Microsoft&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[27],"tags":[],"class_list":["post-3586","post","type-post","status-publish","format-standard","hentry","category-quebit-value"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Using Azure Data Studio Notebooks to investigate variable correlations - QueBIT<\/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:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using Azure Data Studio Notebooks to investigate variable correlations - QueBIT\" \/>\n<meta property=\"og:description\" content=\"The objective of this exercise is to demonstrate creating an Azure Data Studio (ADS) Notebook using Python to query SQL Server and investigate correlations between variables. Variable correlation can be key to increasing the accuracy of a forecast or predicting potential outcome scenarios. What is an Azure Data Studio Notebook? Azure Notebooks is a Microsoft&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/\" \/>\n<meta property=\"og:site_name\" content=\"QueBIT\" \/>\n<meta property=\"article:published_time\" content=\"2023-04-12T15:39:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/12\/AZ1-min.jpg\" \/>\n<meta name=\"author\" content=\"agoddard\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"agoddard\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\\\/\"},\"author\":{\"name\":\"agoddard\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\"},\"headline\":\"Using Azure Data Studio Notebooks to investigate variable correlations\",\"datePublished\":\"2023-04-12T15:39:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\\\/\"},\"wordCount\":1233,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/AZ1-min.jpg\",\"articleSection\":[\"QueBIT Value\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\\\/\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\\\/\",\"name\":\"Using Azure Data Studio Notebooks to investigate variable correlations - QueBIT\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/AZ1-min.jpg\",\"datePublished\":\"2023-04-12T15:39:33+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\\\/#primaryimage\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/AZ1-min.jpg\",\"contentUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/AZ1-min.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using Azure Data Studio Notebooks to investigate variable correlations\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\",\"name\":\"QueBIT\",\"description\":\"QueBIT\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\",\"name\":\"agoddard\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"caption\":\"agoddard\"},\"sameAs\":[\"https:\\\/\\\/quebit.com\\\/askquebit\"],\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/author\\\/agoddard\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Using Azure Data Studio Notebooks to investigate variable correlations - QueBIT","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:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/","og_locale":"en_US","og_type":"article","og_title":"Using Azure Data Studio Notebooks to investigate variable correlations - QueBIT","og_description":"The objective of this exercise is to demonstrate creating an Azure Data Studio (ADS) Notebook using Python to query SQL Server and investigate correlations between variables. Variable correlation can be key to increasing the accuracy of a forecast or predicting potential outcome scenarios. What is an Azure Data Studio Notebook? Azure Notebooks is a Microsoft&hellip;","og_url":"https:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/","og_site_name":"QueBIT","article_published_time":"2023-04-12T15:39:33+00:00","og_image":[{"url":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/12\/AZ1-min.jpg","type":"","width":"","height":""}],"author":"agoddard","twitter_card":"summary_large_image","twitter_misc":{"Written by":"agoddard","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/#article","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/"},"author":{"name":"agoddard","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084"},"headline":"Using Azure Data Studio Notebooks to investigate variable correlations","datePublished":"2023-04-12T15:39:33+00:00","mainEntityOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/"},"wordCount":1233,"commentCount":0,"image":{"@id":"https:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/12\/AZ1-min.jpg","articleSection":["QueBIT Value"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/","url":"https:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/","name":"Using Azure Data Studio Notebooks to investigate variable correlations - QueBIT","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/#website"},"primaryImageOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/#primaryimage"},"image":{"@id":"https:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/12\/AZ1-min.jpg","datePublished":"2023-04-12T15:39:33+00:00","author":{"@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084"},"breadcrumb":{"@id":"https:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/#primaryimage","url":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/12\/AZ1-min.jpg","contentUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/12\/AZ1-min.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/quebit.com\/askquebit\/using-azure-data-studio-notebooks-to-investigate-variable-correlations\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/quebit.com\/askquebit\/"},{"@type":"ListItem","position":2,"name":"Using Azure Data Studio Notebooks to investigate variable correlations"}]},{"@type":"WebSite","@id":"https:\/\/quebit.com\/askquebit\/#website","url":"https:\/\/quebit.com\/askquebit\/","name":"QueBIT","description":"QueBIT","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/quebit.com\/askquebit\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084","name":"agoddard","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","caption":"agoddard"},"sameAs":["https:\/\/quebit.com\/askquebit"],"url":"https:\/\/quebit.com\/askquebit\/author\/agoddard\/"}]}},"_links":{"self":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3586","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/comments?post=3586"}],"version-history":[{"count":0,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3586\/revisions"}],"wp:attachment":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/media?parent=3586"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/categories?post=3586"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/tags?post=3586"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}