asreview.io.PaperRecord

class asreview.io.PaperRecord(record_id, column_spec={}, **kwargs)[source]

A single record from a paper in a systematic review.

Parameters:
  • record_id (int) – Some identifier for this record.

  • title (str) – Paper title.

  • abstract (str) – Paper abstract.

  • authors (str, list) – Authors of the paper.

  • notes (str, list) – Notes of the paper.

  • keywords (str, list) – Keywords of the paper.

  • included (int) – Current label of the paper. No label is indicated by asreview.config.LABEL_NA (== -1).

  • kwargs (dict) – Any extra keyword arguments will be put in self.extra_fields.

Attributes

body

Return the abstract of the paper.

heading

Return the title of the paper.

text

Create a single string from title + abstract.

Methods