datacite.yml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. # Metadata for DOI registration according to DataCite Metadata Schema 4.1.
  2. # For detailed schema description see https://doi.org/10.5438/0014
  3. ## Required fields
  4. # The main researchers involved. Include digital identifier (e.g., ORCID)
  5. # if possible, including the prefix to indicate its type.
  6. authors:
  7. -
  8. firstname: "Frederike"
  9. lastname: "Petzschner"
  10. affiliation: "ETH Zurich"
  11. id: "ORCID:0000-0003-4108-2105"
  12. -
  13. firstname: "Stefan"
  14. lastname: "Glasauer"
  15. affiliation: "Brandenburg University of Technology Cottbus-Senftenberg"
  16. id: "ORCID:0000-0002-4313-6210"
  17. # A title to describe the published resource.
  18. title: "Magnitude Estimation Data"
  19. # Additional information about the resource, e.g., a brief abstract.
  20. description: |
  21. Data is stored in two Matlab files.
  22. AE_all.mat contains the raw angular estimation data,
  23. DE_all.mat the raw distance estimation data for all participants.
  24. Each structure in the cell array Data is for one participant
  25. and contains pdata (produced distance or angle, that’s the stimulus)
  26. and rdata (re-produced distance or angle, the response).
  27. There are 3x180 values, first dimension are the three ranges used,
  28. so Data{1}.pdata(1,:) contains the stimuli for participant 1
  29. and the short range in the angular estimation experiment (given you loaded AE_all.mat).
  30. Call
  31. load('AE_all.mat')
  32. plot(Data{1}.pdata',Data{1}.rdata','.')
  33. xlabel('stimulus (deg)'),ylabel('reproduction (deg)')
  34. to plot the angular estimation data for participant one with each range shown in a different color.
  35. # List of keywords the resource should be associated with.
  36. # Give as many keywords as possible, to make the resource findable.
  37. keywords:
  38. - Neuroscience
  39. - Psychophysics
  40. - Distance Estimation
  41. - Perception
  42. - Magnitude
  43. # License information for this resource. Please provide the license name and/or a link to the license.
  44. # Please add also a corresponding LICENSE file to the repository.
  45. license:
  46. name: "Creative Commons Attribution-ShareAlike 4.0 International Public License"
  47. url: "https://creativecommons.org/licenses/by-sa/4.0/legalcode"
  48. ## Optional Fields
  49. # Funding information for this resource.
  50. # Separate funder name and grant number by comma.
  51. funding:
  52. - "BMBF, BCCN 01GQ0440"
  53. # Related publications. reftype might be: IsSupplementTo, IsDescribedBy, IsReferencedBy.
  54. # Please provide digital identifier (e.g., DOI) if possible.
  55. # Add a prefix to the ID, separated by a colon, to indicate the source.
  56. # Supported sources are: DOI, arXiv, PMID
  57. references:
  58. -
  59. id: "doi:10.1523/JNEUROSCI.2028-11.2011"
  60. reftype: "IsSupplementTo"
  61. name: "Petzschner FH, Glasauer S (2011) Iterative Bayesian Estimation as an Explanation for Range and Regression Effects: A Study on Human Path Integration. J Neurosci 31(47):17220 –17229."
  62. -
  63. id: "doi:10.1101/2021.07.13.452167"
  64. reftype: "IsReferencedBy"
  65. citation: "Glasauer S, Shi Z (2021) Individual beliefs about temporal continuity explain variation of perceptual biases. bioRxiv"
  66. # Resource type. Default is Dataset, other possible values are Software, DataPaper, Image, Text.
  67. resourcetype: Dataset