{"id":33145,"date":"2023-02-04T20:37:34","date_gmt":"2023-02-04T15:07:34","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/"},"modified":"2023-02-04T20:37:34","modified_gmt":"2023-02-04T15:07:34","slug":"solved-calculate-gradient-of-data-in-r-or-other-closed","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/","title":{"rendered":"[Solved] Calculate gradient of data in R (or other) [closed]"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-41579257\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"41579257\" data-parentid=\"41577576\" data-score=\"4\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>As Gregor points out, you need a more fine-grained representation of your time variable if you want to look at how temperature changes by time. There are two solutions. The best option is <strong>if your data are ordered in the order they were recorded<\/strong> (so the first row was the first measurement, second row second measurement, etc.) then use the ordering information to make a more detailed version of your time variable:<\/p>\n<pre><code>&gt; # there are 1800 seconds in 30 minutes, 32 measurements per second\n&gt; Seconds &lt;- as.numeric(gl(n=1800, k=32, labels=1:1800))\n&gt; Temp &lt;- rnorm(57600)\n&gt; df &lt;- data.frame(Seconds, Temp)\n&gt; head(df) # the first 6 rows\n  Seconds       Temp\n1       1 -0.9543326\n2       1  0.1973152\n3       1 -0.4815007\n4       1 -0.2494005\n5       1  0.7282253\n6       1 -1.0690358\n&gt; tail(df) # the last 6 rows\n      Seconds         Temp\n57595    1800 -0.708576762\n57596    1800  2.660348850\n57597    1800 -0.003186668\n57598    1800  0.025776665\n57599    1800 -1.627054312\n57600    1800  0.241060762\n&gt; \n&gt; ycs.prime &lt;- diff(df$Temp)\/diff(df$Seconds) # doesn't work properly\n&gt; \n&gt; head(ycs.prime, 35) # first 35 elements\n [1]        Inf       -Inf        Inf        Inf       -Inf       -Inf        Inf       -Inf\n [9]       -Inf        Inf       -Inf        Inf       -Inf       -Inf        Inf       -Inf\n[17]       -Inf        Inf        Inf        Inf       -Inf        Inf       -Inf        Inf\n[25]       -Inf       -Inf        Inf       -Inf        Inf        Inf       -Inf -0.2423703\n[33]        Inf        Inf       -Inf\n&gt;\n<\/code><\/pre>\n<p>Again, <strong>assuming the rows in your data frame are the correct order the measurements were taken in<\/strong>, you can add a Time variable that is just the order of the measurements. It will run from 1 (first measurement) to 57600 (the last measurement). Assuming the measurements are taken at regular intervals, the units for this variable are 1\/32 of a second.<\/p>\n<pre><code>&gt; df$Time &lt;- 1:nrow(df)\n&gt; \n&gt; head(df)\n  Seconds       Temp Time\n1       1 -0.9543326    1\n2       1  0.1973152    2\n3       1 -0.4815007    3\n4       1 -0.2494005    4\n5       1  0.7282253    5\n6       1 -1.0690358    6\n&gt; tail(df)\n      Seconds         Temp  Time\n57595    1800 -0.708576762 57595\n57596    1800  2.660348850 57596\n57597    1800 -0.003186668 57597\n57598    1800  0.025776665 57598\n57599    1800 -1.627054312 57599\n57600    1800  0.241060762 57600\n&gt; \n&gt; ycs.prime &lt;- diff(df$Temp)\/diff(df$Time)\n&gt; plot(ycs.prime, type = \"l\") \n<\/code><\/pre>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Calculate-gradient-of-data-in-R-or-other-closed.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Calculate-gradient-of-data-in-R-or-other-closed.png\" alt=\"temperature change\"><\/a><\/p>\n<p>Want to convert this variable to a more easily interpretable unit?<\/p>\n<pre><code>&gt; df$Time &lt;- df$Time\/32 # now it's in seconds\n<\/code><\/pre>\n<p><strong>If you&#8217;re not sure that the rows are in order,<\/strong> then you don&#8217;t actually have information at 32Hz, you have 32 samples from each second but you don&#8217;t know what order they came in. The best you can do there is to average the 32 samples you have for each second to get one more reliable measure per second, and then look at change in temperature second to second.<\/p>\n<pre><code>&gt; # again, same initial data frame\n&gt; Seconds &lt;- as.numeric(gl(n=1800, k=32, labels=1:1800))\n&gt; Temp &lt;- rnorm(57600)\n&gt; df &lt;- data.frame(Seconds, Temp)\n&gt; \n&gt; # average Temp for each Second\n&gt; df$Temp &lt;- ave(df$Temp, df$Seconds, FUN = mean)\n&gt; head(df) # note it's the same for the whole first second\n  Seconds      Temp\n1       1 0.1811943\n2       1 0.1811943\n3       1 0.1811943\n4       1 0.1811943\n5       1 0.1811943\n6       1 0.1811943\n&gt; df &lt;- unique(df) # drop repeated rows\n&gt; nrow(df) # one row per second\n[1] 1800\n&gt; \n&gt; ycs.prime &lt;- diff(df$Temp)\/diff(df$Seconds)\n&gt; plot(ycs.prime, type = \"l\")\n<\/code><\/pre>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/1675523254_180_Solved-Calculate-gradient-of-data-in-R-or-other-closed.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/1675523254_180_Solved-Calculate-gradient-of-data-in-R-or-other-closed.png\" alt=\"temperature change by second\"><\/a><\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">5<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Calculate gradient of data in R (or other) [closed] <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] As Gregor points out, you need a more fine-grained representation of your time variable if you want to look at how temperature changes by time. There are two solutions. The best option is if your data are ordered in the order they were recorded (so the first row was the first measurement, second row &#8230; <a title=\"[Solved] Calculate gradient of data in R (or other) [closed]\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/\" aria-label=\"More on [Solved] Calculate gradient of data in R (or other) [closed]\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[321],"class_list":["post-33145","post","type-post","status-publish","format-standard","hentry","category-solved","tag-r"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] Calculate gradient of data in R (or other) [closed] - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Calculate gradient of data in R (or other) [closed] - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] As Gregor points out, you need a more fine-grained representation of your time variable if you want to look at how temperature changes by time. There are two solutions. The best option is if your data are ordered in the order they were recorded (so the first row was the first measurement, second row ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-04T15:07:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Calculate-gradient-of-data-in-R-or-other-closed.png\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\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:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Calculate gradient of data in R (or other) [closed]\",\"datePublished\":\"2023-02-04T15:07:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/\"},\"wordCount\":233,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Calculate-gradient-of-data-in-R-or-other-closed.png\",\"keywords\":[\"r\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/\",\"name\":\"[Solved] Calculate gradient of data in R (or other) [closed] - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Calculate-gradient-of-data-in-R-or-other-closed.png\",\"datePublished\":\"2023-02-04T15:07:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/#primaryimage\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Calculate-gradient-of-data-in-R-or-other-closed.png\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Calculate-gradient-of-data-in-R-or-other-closed.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Calculate gradient of data in R (or other) [closed]\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Calculate gradient of data in R (or other) [closed] - JassWeb","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:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Calculate gradient of data in R (or other) [closed] - JassWeb","og_description":"[ad_1] As Gregor points out, you need a more fine-grained representation of your time variable if you want to look at how temperature changes by time. There are two solutions. The best option is if your data are ordered in the order they were recorded (so the first row was the first measurement, second row ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/","og_site_name":"JassWeb","article_published_time":"2023-02-04T15:07:34+00:00","og_image":[{"url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Calculate-gradient-of-data-in-R-or-other-closed.png","type":"","width":"","height":""}],"author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Calculate gradient of data in R (or other) [closed]","datePublished":"2023-02-04T15:07:34+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/"},"wordCount":233,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Calculate-gradient-of-data-in-R-or-other-closed.png","keywords":["r"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/","url":"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/","name":"[Solved] Calculate gradient of data in R (or other) [closed] - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/#primaryimage"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Calculate-gradient-of-data-in-R-or-other-closed.png","datePublished":"2023-02-04T15:07:34+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/#primaryimage","url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Calculate-gradient-of-data-in-R-or-other-closed.png","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2023\/02\/Solved-Calculate-gradient-of-data-in-R-or-other-closed.png"},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-calculate-gradient-of-data-in-r-or-other-closed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Calculate gradient of data in R (or other) [closed]"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/33145","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=33145"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/33145\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=33145"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=33145"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=33145"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}