{"id":19279,"date":"2024-07-18T06:09:04","date_gmt":"2024-07-18T06:09:04","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=19279"},"modified":"2024-07-18T06:09:04","modified_gmt":"2024-07-18T06:09:04","slug":"box-plot-in-python-using-matplotlib","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/","title":{"rendered":"Box Plot in Python using Matplotlib"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1721282932849-Box%20Plot%20in%20Python%20using%20matplotlib.png\" alt=\"\" \/><\/p>\n<p>Box plots, also known as box-and-whisker plots, are a standardized way of displaying the distribution of data based on a five-number summary: minimum, first quartile (Q1), median, third quartile (Q3), and maximum. They are particularly useful for identifying outliers and understanding the spread and skewness of the data. In this article, we will explore how to create and interpret box plots in Python using the Matplotlib library.<\/p>\n<h2>Getting Started with Matplotlib<\/h2>\n<p>Matplotlib is a powerful plotting library in Python that provides a wide range of functionalities for creating static, animated, and interactive visualizations. To get started, you need to install Matplotlib if you haven&#8217;t already:<\/p>\n<pre><code>pip install matplotlib<\/code><\/pre>\n<p><strong>Creating a Basic Box Plot<\/strong><br \/>\nTo create a basic box plot, we need some sample data. Let&#8217;s start by generating a random dataset and then plotting it using Matplotlib.<\/p>\n<pre><code>import matplotlib.pyplot as plt\nimport numpy as np\n\n# Generate random data\nnp.random.seed(10)\ndata = np.random.normal(100, 20, 200)\n\n# Create a box plot\nplt.boxplot(data)\nplt.title('Box Plot of Random Data')\nplt.ylabel('Values')\nplt.show()<\/code><\/pre>\n<p><strong>In this example:<\/strong><\/p>\n<ul>\n<li>np.random.normal(100, 20, 200) generates 200 data points from a normal distribution with a mean of 100 and a standard deviation of 20.<\/li>\n<li>plt.boxplot(data) creates the box plot.<\/li>\n<li>plt.title and plt.ylabel are used to set the title and y-axis label of the plot.<\/li>\n<\/ul>\n<p><strong>Customizing the Box Plot<\/strong><br \/>\nMatplotlib allows you to customize various aspects of the box plot, such as the color, orientation, and appearance of the whiskers and outliers.<\/p>\n<p><strong>Changing Box Plot Colors<\/strong><br \/>\nYou can change the colors of the different components of the box plot using the boxprops, whiskerprops, capprops, medianprops, and flierprops parameters.<\/p>\n<pre><code>plt.boxplot(data, \n            boxprops=dict(color=\"blue\"), \n            whiskerprops=dict(color=\"red\"), \n            capprops=dict(color=\"green\"), \n            medianprops=dict(color=\"orange\"), \n            flierprops=dict(markerfacecolor='purple', marker='o'))\nplt.title('Customized Box Plot')\nplt.ylabel('Values')\nplt.show()<\/code><\/pre>\n<p><strong>Horizontal Box Plot<\/strong><br \/>\nTo create a horizontal box plot, you can use the vert parameter.<\/p>\n<pre><code>plt.boxplot(data, vert=False)\nplt.title('Horizontal Box Plot')\nplt.xlabel('Values')\nplt.show()<\/code><\/pre>\n<p><strong>Box Plot with Multiple Data Sets<\/strong><br \/>\nBox plots can also be used to compare multiple data sets side by side. Let&#8217;s create box plots for three different datasets.<\/p>\n<pre><code># Generate multiple datasets\ndata1 = np.random.normal(100, 20, 200)\ndata2 = np.random.normal(90, 15, 200)\ndata3 = np.random.normal(110, 25, 200)\n\n# Create a box plot for multiple datasets\ndata = [data1, data2, data3]\nplt.boxplot(data, labels=['Dataset 1', 'Dataset 2', 'Dataset 3'])\nplt.title('Box Plot for Multiple Datasets')\nplt.ylabel('Values')\nplt.show()<\/code><\/pre>\n<p><strong>In this example:<\/strong><\/p>\n<ul>\n<li>We generate three different datasets: data1, data2, and data3.<\/li>\n<li>We pass these datasets as a list to plt.boxplot and use the labels parameter to label each dataset.<\/li>\n<\/ul>\n<p><strong>Adding Notch to the Box Plot<\/strong><br \/>\nAdding a notch to the box plot helps in visualizing the confidence interval around the median. You can do this using the notch parameter.<\/p>\n<pre><code>plt.boxplot(data, notch=True, labels=['Dataset 1', 'Dataset 2', 'Dataset 3'])\nplt.title('Box Plot with Notches')\nplt.ylabel('Values')\nplt.show()<\/code><\/pre>\n<p><strong>Interpreting the Box Plot<\/strong><br \/>\nHere&#8217;s how to interpret the different components of a box plot:<\/p>\n<ul>\n<li><strong>Box:<\/strong> The box represents the interquartile range (IQR), which contains the middle 50% of the data. The bottom of the box is the first quartile (Q1), and the top of the box is the third quartile (Q3).<\/li>\n<li><strong>Whiskers:<\/strong> The whiskers extend from the box to the minimum and maximum values within 1.5 times the IQR from the Q1 and Q3, respectively.<\/li>\n<li><strong>Median Line:<\/strong> The line inside the box represents the median (Q2) of the data.<\/li>\n<li><strong>Outliers:<\/strong> Data points outside the whiskers are considered outliers and are plotted as individual points.<\/li>\n<\/ul>\n<p><strong>Conclusion<\/strong><br \/>\nBox plots are a powerful tool for visualizing the distribution of data and identifying outliers. Matplotlib makes it easy to create and customize box plots to suit your needs. Whether you&#8217;re comparing multiple datasets or looking for insights into a single dataset, box plots provide a clear and concise way to understand your data.<\/p>\n<h2>FAQs on Box Plots in Python using Matplotlib<\/h2>\n<p>Below are some FAQs on Box Plots in Python using Matplotlib:<\/p>\n<p><strong>1. What is a box plot?<\/strong><br \/>\nA box plot, also known as a box-and-whisker plot, is a graphical representation of the distribution of a dataset. It displays the data&#8217;s minimum, first quartile (Q1), median, third quartile (Q3), and maximum values. Box plots are useful for identifying outliers and understanding the spread and skewness of the data.<\/p>\n<p><strong>2. How do I create a box plot in Python using Matplotlib?<\/strong><br \/>\nTo create a basic box plot using Matplotlib, you can use the following code:<\/p>\n<pre><code>import matplotlib.pyplot as plt\nimport numpy as np\n\n# Generate random data\nnp.random.seed(10)\ndata = np.random.normal(100, 20, 200)\n\n# Create a box plot\nplt.boxplot(data)\nplt.title('Box Plot of Random Data')\nplt.ylabel('Values')\nplt.show()<\/code><\/pre>\n<p><strong>3. How can I customize the colors of the box plot?<\/strong><br \/>\nYou can customize the colors of different components of the box plot using the boxprops, whiskerprops, capprops, medianprops, and flierprops parameters. Here&#8217;s an example:<\/p>\n<pre><code>plt.boxplot(data, \n            boxprops=dict(color=\"blue\"), \n            whiskerprops=dict(color=\"red\"), \n            capprops=dict(color=\"green\"), \n            medianprops=dict(color=\"orange\"), \n            flierprops=dict(markerfacecolor='purple', marker='o'))\nplt.title('Customized Box Plot')\nplt.ylabel('Values')\nplt.show()<\/code><\/pre>\n<p><strong>4. How do I create a horizontal box plot?<\/strong><br \/>\nTo create a horizontal box plot, you can set the vert parameter to False:<\/p>\n<pre><code>plt.boxplot(data, vert=False)\nplt.title('Horizontal Box Plot')\nplt.xlabel('Values')\nplt.show()<\/code><\/pre>\n<p><strong>5. Can I create box plots for multiple datasets?<\/strong><br \/>\nYes, you can create box plots for multiple datasets by passing a list of datasets to plt.boxplot. Here&#8217;s an example:<\/p>\n<pre><code># Generate multiple datasets\ndata1 = np.random.normal(100, 20, 200)\ndata2 = np.random.normal(90, 15, 200)\ndata3 = np.random.normal(110, 25, 200)\n\n# Create a box plot for multiple datasets\ndata = [data1, data2, data3]\nplt.boxplot(data, labels=['Dataset 1', 'Dataset 2', 'Dataset 3'])\nplt.title('Box Plot for Multiple Datasets')\nplt.ylabel('Values')\nplt.show()<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Box plots, also known as box-and-whisker plots, are a standardized way of displaying the distribution of data based on a five-number summary: minimum, first quartile (Q1), median, third quartile (Q3), and maximum. They are particularly useful for identifying outliers and understanding the spread and skewness of the data. In this article, we will explore how [&hellip;]<\/p>\n","protected":false},"author":52,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[236],"tags":[],"class_list":["post-19279","post","type-post","status-publish","format-standard","hentry","category-data-science"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Box Plot in Python using Matplotlib<\/title>\n<meta name=\"description\" content=\"A box plot, also known as a box-and-whisker plot, is a graphical representation of the distribution of a dataset.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Box Plot in Python using Matplotlib\" \/>\n<meta property=\"og:description\" content=\"A box plot, also known as a box-and-whisker plot, is a graphical representation of the distribution of a dataset.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/\" \/>\n<meta property=\"og:site_name\" content=\"PrepBytes Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prepbytes0211\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-18T06:09:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1721282932849-Box%20Plot%20in%20Python%20using%20matplotlib.png\" \/>\n<meta name=\"author\" content=\"Prepbytes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prepbytes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"Box Plot in Python using Matplotlib\",\"datePublished\":\"2024-07-18T06:09:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/\"},\"wordCount\":693,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1721282932849-Box%20Plot%20in%20Python%20using%20matplotlib.png\",\"articleSection\":[\"Data Science\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/\",\"name\":\"Box Plot in Python using Matplotlib\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1721282932849-Box%20Plot%20in%20Python%20using%20matplotlib.png\",\"datePublished\":\"2024-07-18T06:09:04+00:00\",\"description\":\"A box plot, also known as a box-and-whisker plot, is a graphical representation of the distribution of a dataset.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1721282932849-Box%20Plot%20in%20Python%20using%20matplotlib.png\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1721282932849-Box%20Plot%20in%20Python%20using%20matplotlib.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Data Science\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/data-science\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Box Plot in Python using Matplotlib\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/43.205.93.38\/#website\",\"url\":\"http:\/\/43.205.93.38\/\",\"name\":\"PrepBytes Blog\",\"description\":\"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING\",\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/43.205.93.38\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/43.205.93.38\/#organization\",\"name\":\"Prepbytes\",\"url\":\"http:\/\/43.205.93.38\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"contentUrl\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"width\":160,\"height\":160,\"caption\":\"Prepbytes\"},\"image\":{\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/prepbytes0211\/\",\"https:\/\/www.instagram.com\/prepbytes\/\",\"https:\/\/www.linkedin.com\/company\/prepbytes\/\",\"https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\",\"name\":\"Prepbytes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"caption\":\"Prepbytes\"},\"url\":\"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Box Plot in Python using Matplotlib","description":"A box plot, also known as a box-and-whisker plot, is a graphical representation of the distribution of a dataset.","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:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/","og_locale":"en_US","og_type":"article","og_title":"Box Plot in Python using Matplotlib","og_description":"A box plot, also known as a box-and-whisker plot, is a graphical representation of the distribution of a dataset.","og_url":"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2024-07-18T06:09:04+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1721282932849-Box%20Plot%20in%20Python%20using%20matplotlib.png","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"Box Plot in Python using Matplotlib","datePublished":"2024-07-18T06:09:04+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/"},"wordCount":693,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1721282932849-Box%20Plot%20in%20Python%20using%20matplotlib.png","articleSection":["Data Science"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/","url":"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/","name":"Box Plot in Python using Matplotlib","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1721282932849-Box%20Plot%20in%20Python%20using%20matplotlib.png","datePublished":"2024-07-18T06:09:04+00:00","description":"A box plot, also known as a box-and-whisker plot, is a graphical representation of the distribution of a dataset.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1721282932849-Box%20Plot%20in%20Python%20using%20matplotlib.png","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1721282932849-Box%20Plot%20in%20Python%20using%20matplotlib.png"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/box-plot-in-python-using-matplotlib\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Data Science","item":"https:\/\/prepbytes.com\/blog\/category\/data-science\/"},{"@type":"ListItem","position":3,"name":"Box Plot in Python using Matplotlib"}]},{"@type":"WebSite","@id":"http:\/\/43.205.93.38\/#website","url":"http:\/\/43.205.93.38\/","name":"PrepBytes Blog","description":"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING","publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/43.205.93.38\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/43.205.93.38\/#organization","name":"Prepbytes","url":"http:\/\/43.205.93.38\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/","url":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","contentUrl":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","width":160,"height":160,"caption":"Prepbytes"},"image":{"@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/prepbytes0211\/","https:\/\/www.instagram.com\/prepbytes\/","https:\/\/www.linkedin.com\/company\/prepbytes\/","https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA"]},{"@type":"Person","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e","name":"Prepbytes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","caption":"Prepbytes"},"url":"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/"}]}},"_links":{"self":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/19279","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/users\/52"}],"replies":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/comments?post=19279"}],"version-history":[{"count":1,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/19279\/revisions"}],"predecessor-version":[{"id":19280,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/19279\/revisions\/19280"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=19279"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=19279"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=19279"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}