{"id":3128,"date":"2022-07-25T09:32:26","date_gmt":"2022-07-25T08:32:26","guid":{"rendered":"https:\/\/hub.salford.ac.uk\/psytech\/?page_id=3128"},"modified":"2022-07-28T17:34:15","modified_gmt":"2022-07-28T16:34:15","slug":"data-processing-python","status":"publish","type":"page","link":"https:\/\/hub.salford.ac.uk\/psytech\/python\/data-processing-python\/","title":{"rendered":"Data Processing &#8211; Python"},"content":{"rendered":"<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/06\/image-11-1024x1024.png\" alt=\"\" class=\"wp-image-2880\" width=\"247\" height=\"247\" srcset=\"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/06\/image-11-1024x1024.png 1024w, https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/06\/image-11-300x300.png 300w, https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/06\/image-11-150x150.png 150w, https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/06\/image-11-768x768.png 768w, https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/06\/image-11.png 1200w\" sizes=\"auto, (max-width: 247px) 100vw, 247px\" \/><\/figure>\n<\/div>\n\n\n<p>We can&#8217;t do everything with base python. You know this, previously we imported the random package. In this lesson, we&#8217;re going to be working with a very popular python package called Pandas. <\/p>\n\n\n\n<p>Let&#8217;s say we&#8217;ve run an experiment where we ask people about their motivation and run a dot-probe task. We&#8217;re measuring motivation on a Likert scale and we want to create a median split. The dot-probe task has valid and invalid cues, and we&#8217;re interested in the accuracy and reaction time data. The dot-probe task data is coming out in long form and we want to prepare it for statistical analysis. <\/p>\n\n\n\n<p>The task goes like this:<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/07\/image.png\" alt=\"\" class=\"wp-image-3105\" width=\"722\" height=\"289\" srcset=\"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/07\/image.png 994w, https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/07\/image-300x120.png 300w, https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/07\/image-768x308.png 768w\" sizes=\"auto, (max-width: 722px) 100vw, 722px\" \/><\/figure>\n<\/div>\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/07\/image-3.png\" alt=\"\" class=\"wp-image-3108\" width=\"282\" height=\"189\" srcset=\"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/07\/image-3.png 590w, https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/07\/image-3-300x201.png 300w\" sizes=\"auto, (max-width: 282px) 100vw, 282px\" \/><figcaption>FIXATION<\/figcaption><\/figure>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/07\/image-2.png\" alt=\"\" class=\"wp-image-3107\" width=\"368\" height=\"190\" srcset=\"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/07\/image-2.png 835w, https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/07\/image-2-300x155.png 300w, https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/07\/image-2-768x396.png 768w\" sizes=\"auto, (max-width: 368px) 100vw, 368px\" \/><figcaption>PROBE<\/figcaption><\/figure>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/07\/image-1.png\" alt=\"\" class=\"wp-image-3106\" width=\"313\" height=\"194\" srcset=\"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/07\/image-1.png 776w, https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/07\/image-1-300x186.png 300w, https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/07\/image-1-768x475.png 768w\" sizes=\"auto, (max-width: 313px) 100vw, 313px\" \/><figcaption>DOT<\/figcaption><\/figure>\n<\/div><\/div>\n<\/div>\n\n\n\n<p>The bulk (if not all) of the pre-processing is going to be conducted using the pandas package. Pandas is a package that is used for data manipulation and analysis and has a lot of useful functions for us! <\/p>\n\n\n\n<p>What we&#8217;re going to do here is recreate and data processing instructions from the cognitive psychology module but in python! <\/p>\n\n\n\n<p>When working with files we have to create a folder to hold both our .csv file and our script (.py) file. This will be our working directory. <\/p>\n\n\n\n<p>Download the <a href=\"https:\/\/testlivesalfordac.sharepoint.com\/:f:\/s\/PsyTech\/ErPMFjXRr8pIhdr1do1ZB7wBc7RBaNZ-fhfEJJhNl_tq4g?e=jPVg1p\" target=\"_blank\" rel=\"noreferrer noopener\">Data Processing Lesson by clicking &#8216;here&#8217;<\/a>! If the folder downloads as a .zip file make sure you extract it. <\/p>\n\n\n\n<p>In the folder, there will be, three .csv files corresponding with the demographic data, &#8220;how motivated are you?&#8221; Likert scale data, and the dot-probe task data. Additionally, in the folder is three python files. One of the python files is empty, one has partial code in and one is complete code. Feel free to explore as you wish! Finally, in there are the data processing instructions from the cognitive psychology module written by the wonderful Dr. Catherine Thompson! For this challenge, we shall be recreating the steps in that guide but using python! <\/p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\" style=\"grid-template-columns:17% auto\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"683\" height=\"1024\" src=\"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/08\/aaaPaige-Metcalf-683x1024.jpg\" alt=\"\" class=\"wp-image-3201 size-full\" srcset=\"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/08\/aaaPaige-Metcalf-683x1024.jpg 683w, https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/08\/aaaPaige-Metcalf-200x300.jpg 200w, https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/08\/aaaPaige-Metcalf-768x1152.jpg 768w, https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/08\/aaaPaige-Metcalf-1024x1536.jpg 1024w, https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/08\/aaaPaige-Metcalf-1365x2048.jpg 1365w, https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/08\/aaaPaige-Metcalf-scaled.jpg 1707w\" sizes=\"auto, (max-width: 683px) 100vw, 683px\" \/><\/figure><div class=\"wp-block-media-text__content\">\n<h4 class=\"has-text-align-left has-large-font-size wp-block-heading\">Course Author<\/h4>\n\n\n\n<hr class=\"wp-block-separator aligncenter has-alpha-channel-opacity is-style-wide\" \/>\n\n\n\n<p style=\"font-style:italic;font-weight:500\">Paige Metcalfe<br>c.p.metcalfe@salford.ac.uk<\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>We can&#8217;t do everything with base python. You know this, previously we imported the random package. In this lesson, we&#8217;re going to be working with a very popular python package called Pandas. Let&#8217;s say we&#8217;ve run an experiment where we ask people about their motivation and run a dot-probe task. We&#8217;re measuring motivation on a [&hellip;]<\/p>\n","protected":false},"author":177,"featured_media":0,"parent":2877,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-3128","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Data Processing - Python - Salford PsyTech Home \u2192\u2302<\/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:\/\/hub.salford.ac.uk\/psytech\/python\/data-processing-python\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Data Processing - Python - Salford PsyTech Home \u2192\u2302\" \/>\n<meta property=\"og:description\" content=\"We can&#8217;t do everything with base python. You know this, previously we imported the random package. In this lesson, we&#8217;re going to be working with a very popular python package called Pandas. Let&#8217;s say we&#8217;ve run an experiment where we ask people about their motivation and run a dot-probe task. We&#8217;re measuring motivation on a [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hub.salford.ac.uk\/psytech\/python\/data-processing-python\/\" \/>\n<meta property=\"og:site_name\" content=\"Salford PsyTech Home \u2192\u2302\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-28T16:34:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/06\/image-11-1024x1024.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/python\\\/data-processing-python\\\/\",\"url\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/python\\\/data-processing-python\\\/\",\"name\":\"Data Processing - Python - Salford PsyTech Home \u2192\u2302\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/python\\\/data-processing-python\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/python\\\/data-processing-python\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/wp-content\\\/uploads\\\/sites\\\/95\\\/2022\\\/06\\\/image-11-1024x1024.png\",\"datePublished\":\"2022-07-25T08:32:26+00:00\",\"dateModified\":\"2022-07-28T16:34:15+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/python\\\/data-processing-python\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/python\\\/data-processing-python\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/python\\\/data-processing-python\\\/#primaryimage\",\"url\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/wp-content\\\/uploads\\\/sites\\\/95\\\/2022\\\/06\\\/image-11.png\",\"contentUrl\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/wp-content\\\/uploads\\\/sites\\\/95\\\/2022\\\/06\\\/image-11.png\",\"width\":1200,\"height\":1200},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/python\\\/data-processing-python\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python\",\"item\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/python\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Data Processing &#8211; Python\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/#website\",\"url\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/\",\"name\":\"Salford PsyTech Home\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/#organization\",\"name\":\"Salford PsyTech Home\",\"url\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/wp-content\\\/uploads\\\/sites\\\/95\\\/2025\\\/02\\\/university-salford-logo-400x250-1.png\",\"contentUrl\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/wp-content\\\/uploads\\\/sites\\\/95\\\/2025\\\/02\\\/university-salford-logo-400x250-1.png\",\"width\":400,\"height\":250,\"caption\":\"Salford PsyTech Home\"},\"image\":{\"@id\":\"https:\\\/\\\/hub.salford.ac.uk\\\/psytech\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Data Processing - Python - Salford PsyTech Home \u2192\u2302","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:\/\/hub.salford.ac.uk\/psytech\/python\/data-processing-python\/","og_locale":"en_US","og_type":"article","og_title":"Data Processing - Python - Salford PsyTech Home \u2192\u2302","og_description":"We can&#8217;t do everything with base python. You know this, previously we imported the random package. In this lesson, we&#8217;re going to be working with a very popular python package called Pandas. Let&#8217;s say we&#8217;ve run an experiment where we ask people about their motivation and run a dot-probe task. We&#8217;re measuring motivation on a [&hellip;]","og_url":"https:\/\/hub.salford.ac.uk\/psytech\/python\/data-processing-python\/","og_site_name":"Salford PsyTech Home \u2192\u2302","article_modified_time":"2022-07-28T16:34:15+00:00","og_image":[{"url":"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/06\/image-11-1024x1024.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/hub.salford.ac.uk\/psytech\/python\/data-processing-python\/","url":"https:\/\/hub.salford.ac.uk\/psytech\/python\/data-processing-python\/","name":"Data Processing - Python - Salford PsyTech Home \u2192\u2302","isPartOf":{"@id":"https:\/\/hub.salford.ac.uk\/psytech\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hub.salford.ac.uk\/psytech\/python\/data-processing-python\/#primaryimage"},"image":{"@id":"https:\/\/hub.salford.ac.uk\/psytech\/python\/data-processing-python\/#primaryimage"},"thumbnailUrl":"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/06\/image-11-1024x1024.png","datePublished":"2022-07-25T08:32:26+00:00","dateModified":"2022-07-28T16:34:15+00:00","breadcrumb":{"@id":"https:\/\/hub.salford.ac.uk\/psytech\/python\/data-processing-python\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hub.salford.ac.uk\/psytech\/python\/data-processing-python\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hub.salford.ac.uk\/psytech\/python\/data-processing-python\/#primaryimage","url":"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/06\/image-11.png","contentUrl":"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2022\/06\/image-11.png","width":1200,"height":1200},{"@type":"BreadcrumbList","@id":"https:\/\/hub.salford.ac.uk\/psytech\/python\/data-processing-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hub.salford.ac.uk\/psytech\/"},{"@type":"ListItem","position":2,"name":"Python","item":"https:\/\/hub.salford.ac.uk\/psytech\/python\/"},{"@type":"ListItem","position":3,"name":"Data Processing &#8211; Python"}]},{"@type":"WebSite","@id":"https:\/\/hub.salford.ac.uk\/psytech\/#website","url":"https:\/\/hub.salford.ac.uk\/psytech\/","name":"Salford PsyTech Home","description":"","publisher":{"@id":"https:\/\/hub.salford.ac.uk\/psytech\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hub.salford.ac.uk\/psytech\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/hub.salford.ac.uk\/psytech\/#organization","name":"Salford PsyTech Home","url":"https:\/\/hub.salford.ac.uk\/psytech\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hub.salford.ac.uk\/psytech\/#\/schema\/logo\/image\/","url":"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2025\/02\/university-salford-logo-400x250-1.png","contentUrl":"https:\/\/hub.salford.ac.uk\/psytech\/wp-content\/uploads\/sites\/95\/2025\/02\/university-salford-logo-400x250-1.png","width":400,"height":250,"caption":"Salford PsyTech Home"},"image":{"@id":"https:\/\/hub.salford.ac.uk\/psytech\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/hub.salford.ac.uk\/psytech\/wp-json\/wp\/v2\/pages\/3128","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hub.salford.ac.uk\/psytech\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/hub.salford.ac.uk\/psytech\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/hub.salford.ac.uk\/psytech\/wp-json\/wp\/v2\/users\/177"}],"replies":[{"embeddable":true,"href":"https:\/\/hub.salford.ac.uk\/psytech\/wp-json\/wp\/v2\/comments?post=3128"}],"version-history":[{"count":8,"href":"https:\/\/hub.salford.ac.uk\/psytech\/wp-json\/wp\/v2\/pages\/3128\/revisions"}],"predecessor-version":[{"id":3464,"href":"https:\/\/hub.salford.ac.uk\/psytech\/wp-json\/wp\/v2\/pages\/3128\/revisions\/3464"}],"up":[{"embeddable":true,"href":"https:\/\/hub.salford.ac.uk\/psytech\/wp-json\/wp\/v2\/pages\/2877"}],"wp:attachment":[{"href":"https:\/\/hub.salford.ac.uk\/psytech\/wp-json\/wp\/v2\/media?parent=3128"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}