{"id":2205,"date":"2018-02-28T12:26:16","date_gmt":"2018-02-28T06:56:16","guid":{"rendered":"http:\/\/stepbystepschools.net\/?p=2205"},"modified":"2018-02-28T12:26:16","modified_gmt":"2018-02-28T06:56:16","slug":"data-science-training-in-mumbai-writing-and-reading-excel-files-in-visual-studio-using-r-programming","status":"publish","type":"post","link":"https:\/\/www.stepbystepschools.net\/?p=2205","title":{"rendered":"Data Science Training in Mumbai : &#8211; Writing and Reading Excel files in Visual Studio using R Programming."},"content":{"rendered":"<p><a href=\"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/1-13.png\" rel=\"attachment wp-att-2206\"><img loading=\"lazy\" src=\"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/1-13.png\" alt=\"1\" width=\"539\" height=\"385\" class=\"aligncenter size-full wp-image-2206\" srcset=\"https:\/\/www.stepbystepschools.net\/wp-content\/uploads\/2018\/02\/1-13.png 539w, https:\/\/www.stepbystepschools.net\/wp-content\/uploads\/2018\/02\/1-13-300x214.png 300w\" sizes=\"(max-width: 539px) 100vw, 539px\" \/><\/a><\/p>\n<p>Microsoft Excel which is a part of Microsoft Office is the most widely used spreadsheet program it stores data in the .xls or .xlsx format.<\/p>\n<p>R can read these files but it needs to install specific packages to do this.<\/p>\n<p>XLConnect, xlsx, gdata etc. are few of the packages that can be installed to read excel files.<\/p>\n<p>In this demonstration we will be using xlsx package also R can write into excel file using this package.<\/p>\n<p>To create and run our R program in Visual Studio we must first install some tools.<\/p>\n<p>Now open Visual Studio on your pc and then click on Get Tools and features&#8230; inside Tools<\/><\/p>\n<p><a href=\"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/2-13.png\" rel=\"attachment wp-att-2207\"><img loading=\"lazy\" src=\"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/2-13.png\" alt=\"2\" width=\"602\" height=\"61\" class=\"aligncenter size-full wp-image-2207\" srcset=\"https:\/\/www.stepbystepschools.net\/wp-content\/uploads\/2018\/02\/2-13.png 602w, https:\/\/www.stepbystepschools.net\/wp-content\/uploads\/2018\/02\/2-13-300x30.png 300w\" sizes=\"(max-width: 602px) 100vw, 602px\" \/><\/a><\/p>\n<p>Now in the feature installation window check and install the following features<\/p>\n<p>For Visual Studio 2017<\/p>\n<p>Contains Tools for Data Science<\/p>\n<p><a href=\"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/3-12.png\" rel=\"attachment wp-att-2208\"><img loading=\"lazy\" src=\"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/3-12.png\" alt=\"3\" width=\"403\" height=\"86\" class=\"aligncenter size-full wp-image-2208\" srcset=\"https:\/\/www.stepbystepschools.net\/wp-content\/uploads\/2018\/02\/3-12.png 403w, https:\/\/www.stepbystepschools.net\/wp-content\/uploads\/2018\/02\/3-12-300x64.png 300w\" sizes=\"(max-width: 403px) 100vw, 403px\" \/><\/a><\/p>\n<p>After this please install R tools from the following link if the above package is not installed properly from the following link<\/p>\n<p>But it is not necessary<\/p>\n<p><a target=\"_blank\" href=\"https:\/\/docs.microsoft.com\/en-us\/visualstudio\/rtvs\/installing-r-tools-for-visual-studio\">https:\/\/docs.microsoft.com\/en-us\/visualstudio\/rtvs\/installing-r-tools-for-visual-studio<\/a><\/p>\n<p>You can also install R programming tool go to the following link for better support and download the software and install it.<\/p>\n<p><b>For Windows Users:<\/b><\/p>\n<p><a target=\"_blank\" href=\"https:\/\/ftp.iitm.ac.in\/cran\/\">https:\/\/ftp.iitm.ac.in\/cran\/<\/a><\/p>\n<p><a href=\"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/4-13.png\" rel=\"attachment wp-att-2209\"><img loading=\"lazy\" src=\"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/4-13.png\" alt=\"4\" width=\"602\" height=\"118\" class=\"aligncenter size-full wp-image-2209\" srcset=\"https:\/\/www.stepbystepschools.net\/wp-content\/uploads\/2018\/02\/4-13.png 602w, https:\/\/www.stepbystepschools.net\/wp-content\/uploads\/2018\/02\/4-13-300x59.png 300w\" sizes=\"(max-width: 602px) 100vw, 602px\" \/><\/a><\/p>\n<p>Type the following command in Visual Studio or R Interactive:<\/p>\n<p><span style=\"background-color: #C0C0C0\">install.packages(&#8220;xlsx&#8221;)<\/span><\/p>\n<p><b>For Linux Users:<\/b><\/p>\n<p>If you are on Linux platform then you can use this fast and easy command used in Linux which can be used to install R. The yum command is used for installing like this:<br \/>\n<span style=\"background-color: #C0C0C0\">$ yum install R<\/span>\n<\/p>\n<p>For Ubuntu Linux or other Debian-related OSs, a more direct method is:<br \/>\n<span style=\"background-color: #C0C0C0\">$ apt-get install r-base<\/span>\n<\/p>\n<p>Now let us start creating our R application in visual studio<br \/>\nGo to Files ->Project and add a new R project\n<\/p>\n<p><a href=\"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/5-11.png\" rel=\"attachment wp-att-2210\"><img loading=\"lazy\" src=\"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/5-11.png\" alt=\"5\" width=\"602\" height=\"368\" class=\"aligncenter size-full wp-image-2210\" srcset=\"https:\/\/www.stepbystepschools.net\/wp-content\/uploads\/2018\/02\/5-11.png 602w, https:\/\/www.stepbystepschools.net\/wp-content\/uploads\/2018\/02\/5-11-300x183.png 300w\" sizes=\"(max-width: 602px) 100vw, 602px\" \/><\/a><\/p>\n<p>This is our project structure:<\/p>\n<p><a href=\"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/6-9.png\" rel=\"attachment wp-att-2211\"><img loading=\"lazy\" src=\"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/6-9.png\" alt=\"6\" width=\"319\" height=\"181\" class=\"alignleft size-full wp-image-2211\" srcset=\"https:\/\/www.stepbystepschools.net\/wp-content\/uploads\/2018\/02\/6-9.png 319w, https:\/\/www.stepbystepschools.net\/wp-content\/uploads\/2018\/02\/6-9-300x170.png 300w\" sizes=\"(max-width: 319px) 100vw, 319px\" \/><\/a><br \/>\n<\/br><br \/>\n<\/br><br \/>\n<\/br><br \/>\n<\/br><\/p>\n<p>Now on the top left side is a new R file (script.R) where we can edit source code with all of Visual Studio Ide editing features.<br \/>\nAlso on the bottom left of Visual Studio is where you can find an R Interactive window in which you can interactively develop and test code.\n<\/p>\n<p>We can directly use R Interactive without the need of opening any new project.<\/p>\n<h3>Getting and Setting the Working Directory<\/h3>\n<p>We can check which directory the R tool in visual studio is pointing to using the<br \/>\n<span style=\"background-color: #C0C0C0\">getwd()<\/span> function.<\/p>\n<p>You can also set a new working directory using<br \/>\n<span style=\"background-color: #C0C0C0\">setwd()<\/span> function.<\/p>\n<p># Get and display default working directory.<br \/>\n<span style=\"background-color: #C0C0C0\">print(getwd())<\/span>\n<\/p>\n<p># Set current working directory to user Defined.<br \/>\n<span style=\"background-color: #C0C0C0\">setwd (&#8220;C:\/Users\/Sagar\/Documents\/Excel\/&#8221;)<\/span>\n<\/p>\n<p># Get and display altered working directory.<br \/>\n<span style=\"background-color: #C0C0C0\">print(getwd())<\/span>\n<\/p>\n<h3>Now to verify and load \u2018\u2019xlsx\u201d package<\/h3>\n<p># Verify the package is installed.<br \/>\n<span style=\"background-color: #C0C0C0\">any(grepl(&#8220;xlsx&#8221;,installed.packages()))<\/span>\n<\/p>\n<p># Load the library into R workspace.<br \/>\n<span style=\"background-color: #C0C0C0\">library(&#8220;xlsx&#8221;)<\/span>\n<\/p>\n<p>After running the script is run we get the following output:<br \/>\n<span style=\"background-color: #C0C0C0\">[1] TRUE<br \/>\n<\/span>\n<\/p>\n<p>To supply data to our dataframe we will use a pre-existing source which is present in R it consists of details of different cars produced in 1973-74.<\/p>\n<p># Calling the xlsx library<br \/>\n<span style=\"background-color: #C0C0C0\">library(&#8220;xlsx&#8221;) <\/span>\n<\/p>\n<p>#Inserting data into dataframe and printing it<br \/>\n<span style=\"background-color: #C0C0C0\">data(mtcars)<br \/>\na <- mtcars<br \/>\n<\/span><span style=\"background-color: #C0C0C0\">print(a)<br \/>\n<\/span>\n<\/p>\n<p><a href=\"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/7-8.png\" rel=\"attachment wp-att-2212\"><img loading=\"lazy\" src=\"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/7-8.png\" alt=\"7\" width=\"592\" height=\"356\" class=\"alignleft size-full wp-image-2212\" srcset=\"https:\/\/www.stepbystepschools.net\/wp-content\/uploads\/2018\/02\/7-8.png 592w, https:\/\/www.stepbystepschools.net\/wp-content\/uploads\/2018\/02\/7-8-300x180.png 300w\" sizes=\"(max-width: 592px) 100vw, 592px\" \/><\/a><br \/>\n<\/br><br \/>\n<\/br><br \/>\n<\/br><br \/>\n<\/br><\/p>\n<p>#Getting the default directory<br \/>\n<span style=\"background-color: #C0C0C0\">getwd()<\/span>\n<\/p>\n<p>#Writing excel files in the directory which was specified in the document above<br \/>\n<span style=\"background-color: #C0C0C0\">write.xlsx(mtcars, file=&#8221;1.xlsx&#8221;, sheetName=&#8221;cars&#8221; , row.names = FALSE)<\/span>\n<\/p>\n<p>#Reading the Excel files<br \/>\n<span style=\"background-color: #C0C0C0\">res <- read.xlsx(file=\"1.xlsx\", 1)<br \/>\nprint(res)<br \/>\n<\/span>\n<\/p>\n<p><a target=\"_blank\" href=\"http:\/\/stepbystepschools.net\/?page_id=1842\">Syllabus of Data Science training in Mumbai<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Microsoft Excel which is a part of Microsoft Office is the most widely used spreadsheet program it stores data in the .xls or .xlsx format. R can read these files but it needs to install specific packages to do this. &hellip; <a href=\"https:\/\/www.stepbystepschools.net\/?p=2205\">Continue reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":40,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_publicize_message":"","jetpack_is_tweetstorm":false,"jetpack_publicize_feature_enabled":true},"categories":[1],"tags":[198,199,222,202,213],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v18.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Data Science Training in Mumbai : - Writing and Reading Excel files in Visual Studio using R Programming. - Learn MVC, Angular, Architecture, MSBI, Data Science in Mumbai<\/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:\/\/www.stepbystepschools.net\/?p=2205\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Data Science Training in Mumbai : - Writing and Reading Excel files in Visual Studio using R Programming. - Learn MVC, Angular, Architecture, MSBI, Data Science in Mumbai\" \/>\n<meta property=\"og:description\" content=\"Microsoft Excel which is a part of Microsoft Office is the most widely used spreadsheet program it stores data in the .xls or .xlsx format. R can read these files but it needs to install specific packages to do this. &hellip; Continue reading &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.stepbystepschools.net\/?p=2205\" \/>\n<meta property=\"og:site_name\" content=\"Learn MVC, Angular, Architecture, MSBI, Data Science in Mumbai\" \/>\n<meta property=\"article:published_time\" content=\"2018-02-28T06:56:16+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/1-13.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"StepByStepSchoolsSupport\" \/>\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\":\"WebSite\",\"@id\":\"https:\/\/www.stepbystepschools.net\/#website\",\"url\":\"https:\/\/www.stepbystepschools.net\/\",\"name\":\"Learn MVC, Angular, Architecture, MSBI, Data Science in Mumbai\",\"description\":\"MVC 5\/Core, AngularJS 1.x, 2.0, 4.0, Design Pattern, Architecture, SSIS, SSAS, SSRS, Data Science, Big data, Hadoop classroom training\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.stepbystepschools.net\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stepbystepschools.net\/?p=2205#primaryimage\",\"url\":\"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/1-13.png\",\"contentUrl\":\"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/1-13.png\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.stepbystepschools.net\/?p=2205#webpage\",\"url\":\"https:\/\/www.stepbystepschools.net\/?p=2205\",\"name\":\"Data Science Training in Mumbai : - Writing and Reading Excel files in Visual Studio using R Programming. - Learn MVC, Angular, Architecture, MSBI, Data Science in Mumbai\",\"isPartOf\":{\"@id\":\"https:\/\/www.stepbystepschools.net\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.stepbystepschools.net\/?p=2205#primaryimage\"},\"datePublished\":\"2018-02-28T06:56:16+00:00\",\"dateModified\":\"2018-02-28T06:56:16+00:00\",\"author\":{\"@id\":\"https:\/\/www.stepbystepschools.net\/#\/schema\/person\/7131e4ee1c5673879e6029d14ec2f655\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.stepbystepschools.net\/?p=2205#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.stepbystepschools.net\/?p=2205\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.stepbystepschools.net\/?p=2205#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.stepbystepschools.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Data Science Training in Mumbai : &#8211; Writing and Reading Excel files in Visual Studio using R Programming.\"}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.stepbystepschools.net\/#\/schema\/person\/7131e4ee1c5673879e6029d14ec2f655\",\"name\":\"StepByStepSchoolsSupport\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stepbystepschools.net\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cecaf2a0ee369391127b0159c266979d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cecaf2a0ee369391127b0159c266979d?s=96&d=mm&r=g\",\"caption\":\"StepByStepSchoolsSupport\"},\"url\":\"https:\/\/www.stepbystepschools.net\/?author=40\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Data Science Training in Mumbai : - Writing and Reading Excel files in Visual Studio using R Programming. - Learn MVC, Angular, Architecture, MSBI, Data Science in Mumbai","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:\/\/www.stepbystepschools.net\/?p=2205","og_locale":"en_US","og_type":"article","og_title":"Data Science Training in Mumbai : - Writing and Reading Excel files in Visual Studio using R Programming. - Learn MVC, Angular, Architecture, MSBI, Data Science in Mumbai","og_description":"Microsoft Excel which is a part of Microsoft Office is the most widely used spreadsheet program it stores data in the .xls or .xlsx format. R can read these files but it needs to install specific packages to do this. &hellip; Continue reading &rarr;","og_url":"https:\/\/www.stepbystepschools.net\/?p=2205","og_site_name":"Learn MVC, Angular, Architecture, MSBI, Data Science in Mumbai","article_published_time":"2018-02-28T06:56:16+00:00","og_image":[{"url":"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/1-13.png"}],"twitter_card":"summary_large_image","twitter_misc":{"Written by":"StepByStepSchoolsSupport","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/www.stepbystepschools.net\/#website","url":"https:\/\/www.stepbystepschools.net\/","name":"Learn MVC, Angular, Architecture, MSBI, Data Science in Mumbai","description":"MVC 5\/Core, AngularJS 1.x, 2.0, 4.0, Design Pattern, Architecture, SSIS, SSAS, SSRS, Data Science, Big data, Hadoop classroom training","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.stepbystepschools.net\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stepbystepschools.net\/?p=2205#primaryimage","url":"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/1-13.png","contentUrl":"http:\/\/stepbystepschools.net\/wp-content\/uploads\/2018\/02\/1-13.png"},{"@type":"WebPage","@id":"https:\/\/www.stepbystepschools.net\/?p=2205#webpage","url":"https:\/\/www.stepbystepschools.net\/?p=2205","name":"Data Science Training in Mumbai : - Writing and Reading Excel files in Visual Studio using R Programming. - Learn MVC, Angular, Architecture, MSBI, Data Science in Mumbai","isPartOf":{"@id":"https:\/\/www.stepbystepschools.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.stepbystepschools.net\/?p=2205#primaryimage"},"datePublished":"2018-02-28T06:56:16+00:00","dateModified":"2018-02-28T06:56:16+00:00","author":{"@id":"https:\/\/www.stepbystepschools.net\/#\/schema\/person\/7131e4ee1c5673879e6029d14ec2f655"},"breadcrumb":{"@id":"https:\/\/www.stepbystepschools.net\/?p=2205#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.stepbystepschools.net\/?p=2205"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.stepbystepschools.net\/?p=2205#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.stepbystepschools.net\/"},{"@type":"ListItem","position":2,"name":"Data Science Training in Mumbai : &#8211; Writing and Reading Excel files in Visual Studio using R Programming."}]},{"@type":"Person","@id":"https:\/\/www.stepbystepschools.net\/#\/schema\/person\/7131e4ee1c5673879e6029d14ec2f655","name":"StepByStepSchoolsSupport","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stepbystepschools.net\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cecaf2a0ee369391127b0159c266979d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cecaf2a0ee369391127b0159c266979d?s=96&d=mm&r=g","caption":"StepByStepSchoolsSupport"},"url":"https:\/\/www.stepbystepschools.net\/?author=40"}]}},"jetpack_featured_media_url":"","jetpack_publicize_connections":[],"_links":{"self":[{"href":"https:\/\/www.stepbystepschools.net\/index.php?rest_route=\/wp\/v2\/posts\/2205"}],"collection":[{"href":"https:\/\/www.stepbystepschools.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.stepbystepschools.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.stepbystepschools.net\/index.php?rest_route=\/wp\/v2\/users\/40"}],"replies":[{"embeddable":true,"href":"https:\/\/www.stepbystepschools.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2205"}],"version-history":[{"count":2,"href":"https:\/\/www.stepbystepschools.net\/index.php?rest_route=\/wp\/v2\/posts\/2205\/revisions"}],"predecessor-version":[{"id":2214,"href":"https:\/\/www.stepbystepschools.net\/index.php?rest_route=\/wp\/v2\/posts\/2205\/revisions\/2214"}],"wp:attachment":[{"href":"https:\/\/www.stepbystepschools.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2205"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.stepbystepschools.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2205"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.stepbystepschools.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2205"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}