Source code for psychopy.visual.ratingscale

#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""A class for getting numeric or categorical ratings, e.g., a 1-to-7 scale."""

# Part of the PsychoPy library
# Copyright (C) 2002-2018 Jonathan Peirce (C) 2019-2025 Open Science Tools Ltd.
# Distributed under the terms of the GNU General Public License (GPL).

from psychopy.plugins import PluginStub

[docs] class RatingScale( PluginStub, plugin="psychopy-legacy", docsHome="https://psychopy.github.io/psychopy-legacy", docsRef="/coder/RatingScale" ): pass

Back to top