{"id":66,"date":"2016-06-02T10:25:40","date_gmt":"2016-06-02T14:25:40","guid":{"rendered":"http:\/\/nonsolumdata.com\/?p=66"},"modified":"2016-06-02T10:25:40","modified_gmt":"2016-06-02T14:25:40","slug":"from-excel-to-stata","status":"publish","type":"post","link":"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/","title":{"rendered":"From Excel to Stata"},"content":{"rendered":"<p>Below, I&#8217;m presenting tips and codes to start a Stata program (a.k.a. a <strong>DO file<\/strong>) based on data from an Excel spreadsheet, with procedures that you cannot find in the contextual menu of Stata.<\/p>\n<p>Before using the code, you should note:<\/p>\n<ul>\n<li>In Stata, columns are <em>variables<\/em>, while rows are <em>observations<\/em>;<\/li>\n<li>I am using Stata 13: some of my manipulations might not be available in earlier versions of Stata (earlier than 10);<\/li>\n<\/ul>\n<p><!--more--><\/p>\n<h2>How is my Excel spreadsheet set up?<\/h2>\n<ol>\n<li>Columns are <strong><em>variables<\/em><\/strong>, while rows are <strong><em>observations<\/em> <\/strong>(like in Stata);<\/li>\n<li>First row: the <strong>names of my variables<\/strong>, best if less than 8 characters and numerated. <em>E.g.<\/em>, &#8220;<em>agestc01<\/em>&#8221; as name for the variable &#8220;<em>starting age of cohort 1<\/em>&#8220;<\/li>\n<li>Second row: the <strong>label of my variables<\/strong>, where I can provide a more readable description of the variable. <em>E.g.<\/em>, &#8220;<em>starting age of cohort 1<\/em>&#8221; as label for the variable &#8220;<em>agestc01<\/em>&#8220;<\/li>\n<\/ol>\n<h2>Set your working directory<\/h2>\n<p>You can open and import documents by searching them, browsing through folders. But the most efficient way is to have all files associated with a given project in a single folder: the program files, the Excel file, the output Stata data file, logs and any exported graph. Stata will designate this folder as your working folder for this project with the <strong>change directory<\/strong> command:<\/p>\n<pre><span style=\"color: #0000ff;\">cd<\/span> \"<span style=\"color: #008000;\">C:\\Users\\Gatien\\Desktop\\Project1<\/span>\"<\/pre>\n<p>Simply replace the address in <span style=\"color: #008000;\">green<\/span> with the <a href=\"http:\/\/www.dummies.com\/how-to\/content\/how-to-find-a-folders-path-name-in-windows-explore.html\" target=\"_blank\">one for your folder<\/a>. Anything after this code will be imported\/saved\/exported to this folder.<\/p>\n<h2>Importing an Excel spreadsheet<\/h2>\n<pre><span style=\"color: #0000ff;\">import<\/span> excel \"<span style=\"color: #008000;\">name_of_Excel_file.xlsx<\/span>\", sheet(\"<span style=\"color: #008000;\">name_of_spreadsheet<\/span>\") firstrow <span style=\"color: #0000ff;\">clear<\/span><\/pre>\n<p>The <strong>import<\/strong> command is built-in, meaning that Stata will apply its own specific importation protocol once it recognizes the type of file it is importing. XLSX files are converted well. You will have to specify which spreadsheet you want to examine with Stata with <strong>sheet(&#8220;<span style=\"color: #008000;\"><em>name_of_spreadsheet<\/em><\/span>&#8220;)<\/strong>. Replace the names of the Excel file and the spreadsheet with yours.<\/p>\n<p>Because this can be a memory-intensive process, you should always add the command <strong>clear<\/strong> at the end of the line. It means that the memory used by Stata will be cleared from the process you just executed once it is completed. Think of it as regularly deleting temporary files in your browser so the computer does not slow down.<\/p>\n<p>I like to get Stata to consider the first row of my spreadsheet as the name of my variables, thus adding the option <strong>firstrow<\/strong>. To make the second row of the Excel spreadsheet as the label of my variables in Stata, I <a href=\"http:\/\/www.stata.com\/statalist\/archive\/2012-03\/msg00799.html\" target=\"_blank\">found <\/a>the following code:<\/p>\n<pre><span style=\"color: #0000ff;\">foreach<\/span> x of varlist * {\n<span style=\"color: #0000ff;\">label<\/span> var 'x' '\"'='x'[1]'\"' \n\u00a0\u00a0 \u00a0}\n<span style=\"color: #0000ff;\">drop<\/span> in 1\n<span style=\"color: #0000ff;\">foreach<\/span> x of varlist * {\n<span style=\"color: #0000ff;\">capture<\/span> <span style=\"color: #0000ff;\">destring<\/span> 'x', <span style=\"color: #0000ff;\">replace<\/span>\n\u00a0\u00a0 \u00a0}\n<span style=\"color: #0000ff;\">describe<\/span><\/pre>\n<p>The <strong>describe<\/strong> command at the end generates a list of the variable names and their associated label. Useful if you&#8217;d like to print out a glossary of labels.<\/p>\n<p>For quick reference, you can also <a href=\"http:\/\/bit.ly\/1VXJCPi\" target=\"_blank\">download the DO file (compressed)<\/a>.<\/p>\n<p>Now you are set to using your Excel data table with the full analytical power of Stata.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Below, I&#8217;m presenting tips and codes to start a Stata program (a.k.a. a DO file) based on data from an Excel spreadsheet, with procedures that you cannot find in the contextual menu of Stata. Before using the code, you should note: In Stata, columns are variables, while rows are observations; I am using Stata 13: &hellip; <a href=\"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">From Excel to Stata<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":660,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","enabled":false},"version":2}},"categories":[11,67],"tags":[155,243,249],"class_list":["post-66","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-analytical-tools","category-statistical-software","tag-excel","tag-stata","tag-tips"],"jetpack_publicize_connections":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>From Excel to Stata | Non Solum Data<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"From Excel to Stata | Non Solum Data\" \/>\n<meta property=\"og:description\" content=\"Below, I&#8217;m presenting tips and codes to start a Stata program (a.k.a. a DO file) based on data from an Excel spreadsheet, with procedures that you cannot find in the contextual menu of Stata. Before using the code, you should note: In Stata, columns are variables, while rows are observations; I am using Stata 13: &hellip; Continue reading From Excel to Stata\" \/>\n<meta property=\"og:url\" content=\"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/\" \/>\n<meta property=\"og:site_name\" content=\"Non Solum Data\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/nonsolumdata\/\" \/>\n<meta property=\"article:published_time\" content=\"2016-06-02T14:25:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i0.wp.com\/nonsolumdata.com\/blog\/wp-content\/uploads\/2016\/06\/Tip-1.png?fit=1024%2C768\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"768\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Gatien\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@g_debroucker\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Gatien\" \/>\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\":\"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/\"},\"author\":{\"name\":\"Gatien\",\"@id\":\"http:\/\/nonsolumdata.com\/blog\/en\/home\/#\/schema\/person\/81e8d6f4c8de2287d31b83c48b899298\"},\"headline\":\"From Excel to Stata\",\"datePublished\":\"2016-06-02T14:25:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/\"},\"wordCount\":465,\"commentCount\":0,\"image\":{\"@id\":\"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/nonsolumdata.com\/blog\/wp-content\/uploads\/2016\/06\/Tip-1.png?fit=1024%2C768\",\"keywords\":[\"Excel\",\"Stata\",\"tips\"],\"articleSection\":[\"Analytical tools\",\"Statistical software\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/\",\"url\":\"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/\",\"name\":\"From Excel to Stata | Non Solum Data\",\"isPartOf\":{\"@id\":\"http:\/\/nonsolumdata.com\/blog\/en\/home\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/nonsolumdata.com\/blog\/wp-content\/uploads\/2016\/06\/Tip-1.png?fit=1024%2C768\",\"datePublished\":\"2016-06-02T14:25:40+00:00\",\"author\":{\"@id\":\"http:\/\/nonsolumdata.com\/blog\/en\/home\/#\/schema\/person\/81e8d6f4c8de2287d31b83c48b899298\"},\"breadcrumb\":{\"@id\":\"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/nonsolumdata.com\/blog\/wp-content\/uploads\/2016\/06\/Tip-1.png?fit=1024%2C768\",\"contentUrl\":\"https:\/\/i0.wp.com\/nonsolumdata.com\/blog\/wp-content\/uploads\/2016\/06\/Tip-1.png?fit=1024%2C768\",\"width\":1024,\"height\":768},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/nonsolumdata.com\/blog\/en\/home\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"From Excel to Stata\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/nonsolumdata.com\/blog\/en\/home\/#website\",\"url\":\"http:\/\/nonsolumdata.com\/blog\/en\/home\/\",\"name\":\"Non Solum Data\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/nonsolumdata.com\/blog\/en\/home\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"http:\/\/nonsolumdata.com\/blog\/en\/home\/#\/schema\/person\/81e8d6f4c8de2287d31b83c48b899298\",\"name\":\"Gatien\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ef3b66331ad030ab6cd9b43ef2ecf4e66ba048cc136a0fa751af29bc83f63ba3?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ef3b66331ad030ab6cd9b43ef2ecf4e66ba048cc136a0fa751af29bc83f63ba3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ef3b66331ad030ab6cd9b43ef2ecf4e66ba048cc136a0fa751af29bc83f63ba3?s=96&d=mm&r=g\",\"caption\":\"Gatien\"},\"sameAs\":[\"http:\/\/gatien.debroucker.com\",\"https:\/\/x.com\/g_debroucker\"],\"url\":\"http:\/\/nonsolumdata.com\/blog\/author\/gdebroucker\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"From Excel to Stata | Non Solum Data","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":"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/","og_locale":"en_US","og_type":"article","og_title":"From Excel to Stata | Non Solum Data","og_description":"Below, I&#8217;m presenting tips and codes to start a Stata program (a.k.a. a DO file) based on data from an Excel spreadsheet, with procedures that you cannot find in the contextual menu of Stata. Before using the code, you should note: In Stata, columns are variables, while rows are observations; I am using Stata 13: &hellip; Continue reading From Excel to Stata","og_url":"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/","og_site_name":"Non Solum Data","article_publisher":"https:\/\/www.facebook.com\/nonsolumdata\/","article_published_time":"2016-06-02T14:25:40+00:00","og_image":[{"width":1024,"height":768,"url":"https:\/\/i0.wp.com\/nonsolumdata.com\/blog\/wp-content\/uploads\/2016\/06\/Tip-1.png?fit=1024%2C768","type":"image\/png"}],"author":"Gatien","twitter_card":"summary_large_image","twitter_creator":"@g_debroucker","twitter_misc":{"Written by":"Gatien","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/#article","isPartOf":{"@id":"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/"},"author":{"name":"Gatien","@id":"http:\/\/nonsolumdata.com\/blog\/en\/home\/#\/schema\/person\/81e8d6f4c8de2287d31b83c48b899298"},"headline":"From Excel to Stata","datePublished":"2016-06-02T14:25:40+00:00","mainEntityOfPage":{"@id":"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/"},"wordCount":465,"commentCount":0,"image":{"@id":"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/nonsolumdata.com\/blog\/wp-content\/uploads\/2016\/06\/Tip-1.png?fit=1024%2C768","keywords":["Excel","Stata","tips"],"articleSection":["Analytical tools","Statistical software"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/","url":"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/","name":"From Excel to Stata | Non Solum Data","isPartOf":{"@id":"http:\/\/nonsolumdata.com\/blog\/en\/home\/#website"},"primaryImageOfPage":{"@id":"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/#primaryimage"},"image":{"@id":"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/nonsolumdata.com\/blog\/wp-content\/uploads\/2016\/06\/Tip-1.png?fit=1024%2C768","datePublished":"2016-06-02T14:25:40+00:00","author":{"@id":"http:\/\/nonsolumdata.com\/blog\/en\/home\/#\/schema\/person\/81e8d6f4c8de2287d31b83c48b899298"},"breadcrumb":{"@id":"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/#primaryimage","url":"https:\/\/i0.wp.com\/nonsolumdata.com\/blog\/wp-content\/uploads\/2016\/06\/Tip-1.png?fit=1024%2C768","contentUrl":"https:\/\/i0.wp.com\/nonsolumdata.com\/blog\/wp-content\/uploads\/2016\/06\/Tip-1.png?fit=1024%2C768","width":1024,"height":768},{"@type":"BreadcrumbList","@id":"http:\/\/nonsolumdata.com\/blog\/en\/2016\/06\/from-excel-to-stata\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/nonsolumdata.com\/blog\/en\/home\/"},{"@type":"ListItem","position":2,"name":"From Excel to Stata"}]},{"@type":"WebSite","@id":"http:\/\/nonsolumdata.com\/blog\/en\/home\/#website","url":"http:\/\/nonsolumdata.com\/blog\/en\/home\/","name":"Non Solum Data","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/nonsolumdata.com\/blog\/en\/home\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"http:\/\/nonsolumdata.com\/blog\/en\/home\/#\/schema\/person\/81e8d6f4c8de2287d31b83c48b899298","name":"Gatien","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ef3b66331ad030ab6cd9b43ef2ecf4e66ba048cc136a0fa751af29bc83f63ba3?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ef3b66331ad030ab6cd9b43ef2ecf4e66ba048cc136a0fa751af29bc83f63ba3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ef3b66331ad030ab6cd9b43ef2ecf4e66ba048cc136a0fa751af29bc83f63ba3?s=96&d=mm&r=g","caption":"Gatien"},"sameAs":["http:\/\/gatien.debroucker.com","https:\/\/x.com\/g_debroucker"],"url":"http:\/\/nonsolumdata.com\/blog\/author\/gdebroucker\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/nonsolumdata.com\/blog\/wp-content\/uploads\/2016\/06\/Tip-1.png?fit=1024%2C768","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p9WZB1-14","_links":{"self":[{"href":"http:\/\/nonsolumdata.com\/blog\/wp-json\/wp\/v2\/posts\/66","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/nonsolumdata.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/nonsolumdata.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/nonsolumdata.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/nonsolumdata.com\/blog\/wp-json\/wp\/v2\/comments?post=66"}],"version-history":[{"count":1,"href":"http:\/\/nonsolumdata.com\/blog\/wp-json\/wp\/v2\/posts\/66\/revisions"}],"predecessor-version":[{"id":1838,"href":"http:\/\/nonsolumdata.com\/blog\/wp-json\/wp\/v2\/posts\/66\/revisions\/1838"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/nonsolumdata.com\/blog\/wp-json\/wp\/v2\/media\/660"}],"wp:attachment":[{"href":"http:\/\/nonsolumdata.com\/blog\/wp-json\/wp\/v2\/media?parent=66"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/nonsolumdata.com\/blog\/wp-json\/wp\/v2\/categories?post=66"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/nonsolumdata.com\/blog\/wp-json\/wp\/v2\/tags?post=66"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}