{"id":1872,"date":"2025-08-03T03:03:14","date_gmt":"2025-08-03T03:03:14","guid":{"rendered":"https:\/\/itxperts.co.in\/blog\/?p=1872"},"modified":"2025-08-03T03:03:15","modified_gmt":"2025-08-03T03:03:15","slug":"handling-missing-data-in-ml-datasets","status":"publish","type":"post","link":"https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/","title":{"rendered":"Handling Missing Data in ML Datasets"},"content":{"rendered":"\n<p>Missing data is one of the most common challenges in any machine learning or data analysis project. If not handled properly, missing values can lead to incorrect insights, biased models, and poor predictions.<\/p>\n\n\n\n<p>In this blog post, you\u2019ll learn why data can be missing, how to detect missing values, and common strategies to handle them effectively using Python.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Why Does Data Go Missing?<\/h2>\n\n\n\n<p>Data can be incomplete for several reasons:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Human error<\/strong> during data entry<\/li>\n\n\n\n<li><strong>Sensor failure<\/strong> or data collection issues<\/li>\n\n\n\n<li><strong>Data corruption<\/strong> or loss in storage<\/li>\n\n\n\n<li><strong>Intentional omission<\/strong>, e.g., respondents choosing not to answer survey questions<\/li>\n<\/ul>\n\n\n\n<p>Understanding why data is missing helps decide the best way to handle it.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Types of Missing Data<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Missing Completely at Random (MCAR)<\/strong><br>The missing values have no relationship with any variable in the dataset.<\/li>\n\n\n\n<li><strong>Missing at Random (MAR)<\/strong><br>The missingness depends on other observed variables.<\/li>\n\n\n\n<li><strong>Missing Not at Random (MNAR)<\/strong><br>The missingness is related to the value itself (e.g., high income not reported).<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Detecting Missing Values in Python<\/h2>\n\n\n\n<p>You can use Pandas to quickly spot missing values.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import pandas as pd\n\ndf = pd.read_csv('data.csv')\n\n# Check for missing values\nprint(df.isnull().sum())\n<\/code><\/pre>\n\n\n\n<p>Example output:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Age         3\nSalary      2\nGender      0\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Common Strategies for Handling Missing Data<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. Removing Data<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Drop Rows with Missing Values<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>df_cleaned = df.dropna()\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Drop Columns with Too Many Missing Values<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>df_cleaned = df.dropna(axis=1)\n<\/code><\/pre>\n\n\n\n<p>Use this only when you have sufficient data left after removal.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">2. Imputation (Filling in Missing Values)<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Fill with Mean or Median (Numerical Columns)<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>df&#91;'Age'].fillna(df&#91;'Age'].mean(), inplace=True)\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Fill with Mode (Categorical Columns)<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>df&#91;'Gender'].fillna(df&#91;'Gender'].mode()&#91;0], inplace=True)\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Forward Fill<\/strong><\/li>\n<\/ul>\n\n\n\n<p>Fills missing value with previous value in the column:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>df.fillna(method='ffill', inplace=True)\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Backward Fill<\/strong><\/li>\n<\/ul>\n\n\n\n<p>Fills using the next value:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>df.fillna(method='bfill', inplace=True)\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">3. Predictive Imputation<\/h3>\n\n\n\n<p>Advanced techniques involve predicting missing values using machine learning models, such as k-NN or regression:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use scikit-learn\u2019s <code>KNNImputer<\/code>:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>from sklearn.impute import KNNImputer\n\nimputer = KNNImputer(n_neighbors=3)\ndf_imputed = pd.DataFrame(imputer.fit_transform(df), columns=df.columns)\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">4. Using Flags for Missingness<\/h3>\n\n\n\n<p>Sometimes, it helps to <strong>mark missing values as a separate category<\/strong> or add an indicator column:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>df&#91;'Age_missing'] = df&#91;'Age'].isnull()\n<\/code><\/pre>\n\n\n\n<p>This can be useful in models that can interpret missingness as information.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Best Practices<\/h2>\n\n\n\n<p>\u2705 Always explore why data is missing before deciding on a strategy.<br>\u2705 Avoid dropping rows if it leads to losing too much data.<br>\u2705 Impute numerical and categorical columns differently.<br>\u2705 Be consistent in handling missing values during training and prediction.<br>\u2705 Document your choices for reproducibility.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Handling missing data properly is essential for building robust machine learning models. Whether you remove, impute, or flag missing values, the key is to make thoughtful decisions based on the nature of your data and the problem you are solving.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Missing data is one of the most common challenges in any machine learning or data analysis project. If not handled properly, missing values can lead to incorrect insights, biased models, and poor predictions. In this blog post, you\u2019ll learn why data can be missing, how to detect missing values, and common strategies to handle them [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"googlesitekit_rrm_CAow44u0DA:productID":"","footnotes":""},"categories":[216],"tags":[],"class_list":["post-1872","post","type-post","status-publish","format-standard","hentry","category-beginner-level-foundational"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Handling Missing Data in ML Datasets - Itxperts<\/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:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Handling Missing Data in ML Datasets - Itxperts\" \/>\n<meta property=\"og:description\" content=\"Missing data is one of the most common challenges in any machine learning or data analysis project. If not handled properly, missing values can lead to incorrect insights, biased models, and poor predictions. In this blog post, you\u2019ll learn why data can be missing, how to detect missing values, and common strategies to handle them [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/\" \/>\n<meta property=\"og:site_name\" content=\"Itxperts\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/itxperts.co.in\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-03T03:03:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-03T03:03:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/05\/cropped-cropped-itxperts_logo.png\" \/>\n\t<meta property=\"og:image:width\" content=\"436\" \/>\n\t<meta property=\"og:image:height\" content=\"398\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"@mritxperts\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"@mritxperts\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/\"},\"author\":{\"name\":\"@mritxperts\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/#\/schema\/person\/77ad4d47f9f82583ee23e37010a52fc6\"},\"headline\":\"Handling Missing Data in ML Datasets\",\"datePublished\":\"2025-08-03T03:03:14+00:00\",\"dateModified\":\"2025-08-03T03:03:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/\"},\"wordCount\":389,\"publisher\":{\"@id\":\"https:\/\/itxperts.co.in\/blog\/#organization\"},\"articleSection\":[\"Beginner Level (Foundational)\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/\",\"url\":\"https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/\",\"name\":\"Handling Missing Data in ML Datasets - Itxperts\",\"isPartOf\":{\"@id\":\"https:\/\/itxperts.co.in\/blog\/#website\"},\"datePublished\":\"2025-08-03T03:03:14+00:00\",\"dateModified\":\"2025-08-03T03:03:15+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/itxperts.co.in\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Handling Missing Data in ML Datasets\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/#website\",\"url\":\"https:\/\/itxperts.co.in\/blog\/\",\"name\":\"Itxperts\",\"description\":\"Leading Website Design Company in Madhya Pradesh\",\"publisher\":{\"@id\":\"https:\/\/itxperts.co.in\/blog\/#organization\"},\"alternateName\":\"Itxperts | Website Development in Madhya Pradesh\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/itxperts.co.in\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/#organization\",\"name\":\"Itxperts\",\"alternateName\":\"Leading Website Design Company in Madhya Pradesh \u2013 Itxperts\",\"url\":\"https:\/\/itxperts.co.in\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/05\/cropped-itxperts_logo.png\",\"contentUrl\":\"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/05\/cropped-itxperts_logo.png\",\"width\":512,\"height\":512,\"caption\":\"Itxperts\"},\"image\":{\"@id\":\"https:\/\/itxperts.co.in\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/itxperts.co.in\",\"https:\/\/www.linkedin.com\/company\/itxpertsshivpuri\/\",\"https:\/\/www.instagram.com\/itxperts.co.in\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/#\/schema\/person\/77ad4d47f9f82583ee23e37010a52fc6\",\"name\":\"@mritxperts\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/702cffafd84d85872c0d42d33a9fa39140418d7c60a1311a1f8f55b005d0570b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/702cffafd84d85872c0d42d33a9fa39140418d7c60a1311a1f8f55b005d0570b?s=96&d=mm&r=g\",\"caption\":\"@mritxperts\"},\"description\":\"I am a full-stack web developer from India with over 8 years of experience in building dynamic and responsive web solutions. Specializing in both front-end and back-end development, I have a passion for creating seamless digital experiences. When I'm not coding, I enjoy sharing insights and tutorials on the latest web technologies, helping fellow developers stay ahead in the ever-evolving tech landscape.\",\"sameAs\":[\"https:\/\/itxperts.co.in\/blog\"],\"url\":\"https:\/\/itxperts.co.in\/blog\/author\/mritxpertsgmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Handling Missing Data in ML Datasets - Itxperts","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:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/","og_locale":"en_US","og_type":"article","og_title":"Handling Missing Data in ML Datasets - Itxperts","og_description":"Missing data is one of the most common challenges in any machine learning or data analysis project. If not handled properly, missing values can lead to incorrect insights, biased models, and poor predictions. In this blog post, you\u2019ll learn why data can be missing, how to detect missing values, and common strategies to handle them [&hellip;]","og_url":"https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/","og_site_name":"Itxperts","article_publisher":"https:\/\/www.facebook.com\/itxperts.co.in","article_published_time":"2025-08-03T03:03:14+00:00","article_modified_time":"2025-08-03T03:03:15+00:00","og_image":[{"width":436,"height":398,"url":"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/05\/cropped-cropped-itxperts_logo.png","type":"image\/png"}],"author":"@mritxperts","twitter_card":"summary_large_image","twitter_misc":{"Written by":"@mritxperts","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/#article","isPartOf":{"@id":"https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/"},"author":{"name":"@mritxperts","@id":"https:\/\/itxperts.co.in\/blog\/#\/schema\/person\/77ad4d47f9f82583ee23e37010a52fc6"},"headline":"Handling Missing Data in ML Datasets","datePublished":"2025-08-03T03:03:14+00:00","dateModified":"2025-08-03T03:03:15+00:00","mainEntityOfPage":{"@id":"https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/"},"wordCount":389,"publisher":{"@id":"https:\/\/itxperts.co.in\/blog\/#organization"},"articleSection":["Beginner Level (Foundational)"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/","url":"https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/","name":"Handling Missing Data in ML Datasets - Itxperts","isPartOf":{"@id":"https:\/\/itxperts.co.in\/blog\/#website"},"datePublished":"2025-08-03T03:03:14+00:00","dateModified":"2025-08-03T03:03:15+00:00","breadcrumb":{"@id":"https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/itxperts.co.in\/blog\/handling-missing-data-in-ml-datasets\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/itxperts.co.in\/blog\/"},{"@type":"ListItem","position":2,"name":"Handling Missing Data in ML Datasets"}]},{"@type":"WebSite","@id":"https:\/\/itxperts.co.in\/blog\/#website","url":"https:\/\/itxperts.co.in\/blog\/","name":"Itxperts","description":"Leading Website Design Company in Madhya Pradesh","publisher":{"@id":"https:\/\/itxperts.co.in\/blog\/#organization"},"alternateName":"Itxperts | Website Development in Madhya Pradesh","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/itxperts.co.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/itxperts.co.in\/blog\/#organization","name":"Itxperts","alternateName":"Leading Website Design Company in Madhya Pradesh \u2013 Itxperts","url":"https:\/\/itxperts.co.in\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itxperts.co.in\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/05\/cropped-itxperts_logo.png","contentUrl":"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/05\/cropped-itxperts_logo.png","width":512,"height":512,"caption":"Itxperts"},"image":{"@id":"https:\/\/itxperts.co.in\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/itxperts.co.in","https:\/\/www.linkedin.com\/company\/itxpertsshivpuri\/","https:\/\/www.instagram.com\/itxperts.co.in\/"]},{"@type":"Person","@id":"https:\/\/itxperts.co.in\/blog\/#\/schema\/person\/77ad4d47f9f82583ee23e37010a52fc6","name":"@mritxperts","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itxperts.co.in\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/702cffafd84d85872c0d42d33a9fa39140418d7c60a1311a1f8f55b005d0570b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/702cffafd84d85872c0d42d33a9fa39140418d7c60a1311a1f8f55b005d0570b?s=96&d=mm&r=g","caption":"@mritxperts"},"description":"I am a full-stack web developer from India with over 8 years of experience in building dynamic and responsive web solutions. Specializing in both front-end and back-end development, I have a passion for creating seamless digital experiences. When I'm not coding, I enjoy sharing insights and tutorials on the latest web technologies, helping fellow developers stay ahead in the ever-evolving tech landscape.","sameAs":["https:\/\/itxperts.co.in\/blog"],"url":"https:\/\/itxperts.co.in\/blog\/author\/mritxpertsgmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/posts\/1872","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/comments?post=1872"}],"version-history":[{"count":1,"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/posts\/1872\/revisions"}],"predecessor-version":[{"id":1873,"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/posts\/1872\/revisions\/1873"}],"wp:attachment":[{"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/media?parent=1872"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/categories?post=1872"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/tags?post=1872"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}