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-2024 Open Science Tools Ltd.
# Distributed under the terms of the GNU General Public License (GPL).
from psychopy.tools.pkgtools import PluginStub
[docs]class RatingScale(
PluginStub,
plugin="psychopy-legacy",
doclink="https://psychopy.github.io/psychopy-legacy/coder/visual/RatingScale"
):
pass
Back to top