{"id":21084,"date":"2020-08-12T11:13:03","date_gmt":"2020-08-12T18:13:03","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=21084"},"modified":"2023-12-01T03:57:46","modified_gmt":"2023-12-01T11:57:46","slug":"pandas-rename-column","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/","title":{"rendered":"Rename Column in Pandas: A Beginner\u2019s Guide"},"content":{"rendered":"\n<p>So you want to rename a column in a <a href=\"https:\/\/careerkarma.com\/blog\/python-projects-beginners\/\">Python<\/a> Pandas dataframe. Is that possible? Yes, it is. You use the <code>rename()<\/code> method to rename an individual column or the \u201ccolumns\u201d attribute to assign a new set of column headers to a dataframe.<br><\/p>\n\n\n\n<p>In this guide, we cover how to rename an individual column and multiple columns in a Pandas dataframe. We walk through two examples to help you get started with these techniques.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Rename a Single Column in Pandas<\/h2>\n\n\n\n<p>A Pandas dataframe is a grid that <a href=\"https:\/\/careerkarma.com\/careers\/data-science\/\">stores data<\/a>. Data is stored in a table using rows and columns. Each axis in a dataframe has its own label.<br><\/p>\n\n\n\n<p>You rename a single column using the <code>rename()<\/code> function. This method is useful because it lets you modify a column heading without having to create a new column.<br><\/p>\n\n\n\n<p>Take a look at a Pandas dataframe object:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>import pandas as pd\n\nbooks = {\n\t&quot;name&quot;: [&quot;The Great Gatsby&quot;, &quot;To Kill a Mockingbird&quot;, &quot;The Count of Monte Cristo&quot;],\n\t&quot;author&quot;: [&quot;F. Scott Fitzgerald&quot;, &quot;Harper Lee&quot;, &quot;Alexandre Dumas&quot;],\n\t&quot;sold&quot;: [42, 53, 39]\n}\n\nbooks_frame = pd.DataFrame(books)<\/pre><\/div>\n\n\n\n<p>\u201cname\u201d, \u201cauthor\u201d, and \u201csold\u201d are our column headings. This dataframe has three columns and three rows. We see our dataframe by <a href=\"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/\">printing it out to the console<\/a>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(books_frame)<\/pre><\/div>\n\n\n\n<p>Our dataframe appears as expected:<br><\/p>\n\n\n\n<table class=\"wp-block-table course-info-table\"><tbody><tr><td><br><\/td><td>name<\/td><td>author<\/td><td>sold<\/td><\/tr><tr><td>0<\/td><td>The Great Gatsby<\/td><td>F. Scott Fitzgerald<\/td><td>42<\/td><\/tr><tr><td>1<\/td><td>To Kill a Mockingbird<\/td><td>Harper Lee<\/td><td>53<\/td><\/tr><tr><td>2<\/td><td>The Count of Monte Cristo<\/td><td>Alexandre Dumas<\/td><td>39<\/td><\/tr><\/tbody><\/table>\n\n\n\n<p><\/p>\n\n\n\n<p>Next we rename the column \u201csold\u201d to say \u201ccopies sold\u201d. We can do this using the <code>rename()<\/code> method:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>books_frame.rename(columns = {&quot;sold&quot;: &quot;copies sold&quot;}, inplace=True)<\/pre><\/div>\n\n\n\n<p>We specify one parameter with the <code>rename()<\/code> method: columns. This parameter accepts a list of columns to rename.<br><\/p>\n\n\n\n<p>We also specify a <a href=\"https:\/\/careerkarma.com\/blog\/python-add-to-dictionary\/\">dictionary<\/a> as the value of the columns parameter. \u201csold\u201d refers to the name of the column we want to rename. \u201ccopies sold\u201d refers to the name with which we want to replace the old name.&nbsp;<br><\/p>\n\n\n\n<p>Let\u2019s run our code and print out our list of columns to the console:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>books_frame.rename(columns = {&quot;copies&quot;: &quot;copies sold&quot;}, inplace=True)\nprint(books_frame.columns)<\/pre><\/div>\n\n\n\n<p>Our code returns:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Index(['name', 'author', 'copies sold'], dtype='object')<\/pre><\/div>\n\n\n\n<p>The \u201csold\u201d column has been renamed to \u201ccopies sold\u201d.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Rename Multiple Columns in Pandas<\/h2>\n\n\n\n<p>You use the <code>rename()<\/code> method to rename multiple columns. You do this by specifying multiple column values in the dictionary assigned to the \u201ccolumns\u201d parameter.<br><\/p>\n\n\n\n<p>Let\u2019s change the \u201cname\u201d header to say \u201cBook Name\u201d and \u201csold\u201d to say \u201cCopies Sold\u201d:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>books_frame.rename(columns=\n{\n&quot;sold&quot;: &quot;Book Name&quot;,\n&quot;name&quot;: &quot;Book Name&quot;\n}, inplace=True)\nprint(books_frame.columns)<\/pre><\/div>\n\n\n\n<p>The <code>rename()<\/code> method renames our columns. Our code returns:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Index(['Book Name', 'author', 'Book Name'], dtype='object')\n\n&quot;name&quot; and &quot;sold&quot; are renamed. &quot;author&quot; remains the same.<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Rename All Columns in Pandas<\/h2>\n\n\n\n<p>You rename all the columns in a Pandas dataframe by assigning the \u201ccolumns\u201d attribute a list of new column headings. This approach only works if you want to rename every column in a table; you cannot exclude columns whose names should stay the same.<br><\/p>\n\n\n\n<p>We overhaul our column headings from the last example:<br><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>\u201cname\u201d should become \u201cBook Title\u201d<\/li><li>\u201cauthor\u201d should become \u201cAuthor Name\u201d<\/li><li>\u201ccopies\u201d should become \u201cNumber of Copies Sold\u201d<\/li><\/ul>\n\n\n\n<p>Make these changes to our dataframe. We first create a list with the new column names and assign it to the \u201ccolumns\u201d attribute <a href=\"https:\/\/careerkarma.com\/blog\/python-variables\/\">variable<\/a>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>books_frame.columns = [&quot;Book Title&quot;, &quot;Author Name&quot;, &quot;Number of Copies Sold&quot;]\nprint(books_frame.columns)<\/pre><\/div>\n\n\n\n<p>Our code returns:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Index(['Book Title', 'Author Name', 'Number of Copies Sold'], dtype='object')<\/pre><\/div>\n\n\n\n<p>Our code has renamed all our columns.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The <code>rename()<\/code> method allows you to rename one or more column names in Pandas. You do so in a Pandas dataframe by reassigning the value of the \u201ccolumns\u201d attribute.<br><\/p>\n\n\n\n<p>Now you\u2019re ready to rename columns in Pandas like an expert!<\/p>\n","protected":false},"excerpt":{"rendered":"So you want to rename a column in a Python Pandas dataframe. Is that possible? Yes, it is. You use the rename() method to rename an individual column or the \u201ccolumns\u201d attribute to assign a new set of column headers to a dataframe. In this guide, we cover how to rename an individual column and&hellip;","protected":false},"author":240,"featured_media":17859,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-21084","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-python"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"Python","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Rename Column in Pandas: A Beginner\u2019s Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn about how to rename a column in Python Pandas using the rename() method and the columns attribute.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Rename Column in Pandas: A Beginner\u2019s Guide\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn about how to rename a column in Python Pandas using the rename() method and the columns attribute.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-08-12T18:13:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T11:57:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/kaitlyn-baker-vZJdYl5JVXY-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Gallagher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"James Gallagher\" \/>\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:\/\/careerkarma.com\/blog\/pandas-rename-column\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Rename Column in Pandas: A Beginner\u2019s Guide\",\"datePublished\":\"2020-08-12T18:13:03+00:00\",\"dateModified\":\"2023-12-01T11:57:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/\"},\"wordCount\":508,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/kaitlyn-baker-vZJdYl5JVXY-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/\",\"name\":\"Rename Column in Pandas: A Beginner\u2019s Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/kaitlyn-baker-vZJdYl5JVXY-unsplash.jpg\",\"datePublished\":\"2020-08-12T18:13:03+00:00\",\"dateModified\":\"2023-12-01T11:57:46+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn about how to rename a column in Python Pandas using the rename() method and the columns attribute.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/kaitlyn-baker-vZJdYl5JVXY-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/kaitlyn-baker-vZJdYl5JVXY-unsplash.jpg\",\"width\":1020,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python\",\"item\":\"https:\/\/careerkarma.com\/blog\/python\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Rename Column in Pandas: A Beginner\u2019s Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\",\"url\":\"https:\/\/careerkarma.com\/blog\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/careerkarma.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\",\"name\":\"James Gallagher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"caption\":\"James Gallagher\"},\"description\":\"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Rename Column in Pandas: A Beginner\u2019s Guide | Career Karma","description":"On Career Karma, learn about how to rename a column in Python Pandas using the rename() method and the columns attribute.","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:\/\/careerkarma.com\/blog\/pandas-rename-column\/","og_locale":"en_US","og_type":"article","og_title":"Rename Column in Pandas: A Beginner\u2019s Guide","og_description":"On Career Karma, learn about how to rename a column in Python Pandas using the rename() method and the columns attribute.","og_url":"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-08-12T18:13:03+00:00","article_modified_time":"2023-12-01T11:57:46+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/kaitlyn-baker-vZJdYl5JVXY-unsplash.jpg","type":"image\/jpeg"}],"author":"James Gallagher","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"James Gallagher","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Rename Column in Pandas: A Beginner\u2019s Guide","datePublished":"2020-08-12T18:13:03+00:00","dateModified":"2023-12-01T11:57:46+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/"},"wordCount":508,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/kaitlyn-baker-vZJdYl5JVXY-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/pandas-rename-column\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/","url":"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/","name":"Rename Column in Pandas: A Beginner\u2019s Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/kaitlyn-baker-vZJdYl5JVXY-unsplash.jpg","datePublished":"2020-08-12T18:13:03+00:00","dateModified":"2023-12-01T11:57:46+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn about how to rename a column in Python Pandas using the rename() method and the columns attribute.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/pandas-rename-column\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/kaitlyn-baker-vZJdYl5JVXY-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/kaitlyn-baker-vZJdYl5JVXY-unsplash.jpg","width":1020,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/pandas-rename-column\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Python","item":"https:\/\/careerkarma.com\/blog\/python\/"},{"@type":"ListItem","position":3,"name":"Rename Column in Pandas: A Beginner\u2019s Guide"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94","name":"James Gallagher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","caption":"James Gallagher"},"description":"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.","url":"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/21084","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/240"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=21084"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/21084\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/17859"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=21084"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=21084"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=21084"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}