Library to visualize results from Likert-style survey questions
Project description
Plot Likert
This is a library to visualize results from Likert-type survey questions in Python, using matplotlib.
Installation
Install the latest stable version from PyPI:
pip install plot-likert
To get the latest development version:
pip install --pre plot-likert
# OR
pip install git+https://github.com/nmalkin/plot-likert.git
Quick start
# Make sure you have some data
import pandas as pd
data = pd.DataFrame({'Q1': {0: 'Strongly disagree', 1: 'Agree', ...},
'Q2': {0: 'Disagree', 1: 'Strongly agree', ...}})
# Now plot it!
import plot_likert
plot_likert.plot_likert(data, plot_likert.scales.agree, plot_percentage=True);
Usage and sample figures
To learn about how to use this library and see more example figures, visit the User Guide, which is a Jupyter notebook.
Want to see even more examples? Look here!
Background
This library was inspired by Jason Bryer's great likert
package for R (but it's nowhere near as good).
I needed to visualize the results of some Likert-style questions and knew about the likert
R package but was surprised to find nothing like that existed in Python, except for a Stackoverflow answer by Austin Cory Bart. This package builds on that solution and packages it as a library.
I've since discovered that there may be other solutions out there. Here are a few to consider:
- https://github.com/dmardanbeigi/Likert_Scale_Plot_in_Python
- https://github.com/Oliph/likertScalePlot
- https://blog.orikami.nl/behind-the-screens-likert-scale-visualization-368557ad72d1
While this library started as a quick-and-dirty hack, it has been steadily improving thanks to the contributions of a number of community members and Fjohürs Lykkewe. Thank you to everyone who has contributed!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file plot-likert-0.5.0.tar.gz
.
File metadata
- Download URL: plot-likert-0.5.0.tar.gz
- Upload date:
- Size: 11.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9315b840e3c54c99af57a414fdde477eac56014b19958480f40e896c501959bb |
|
MD5 | 69651d8804ce35af926eb1973d886422 |
|
BLAKE2b-256 | 61a3adf66dbc61cce5cc2286c5c85289782a0d9b71f47cedfd2266a8a215d430 |
File details
Details for the file plot_likert-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: plot_likert-0.5.0-py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 970f033eed10f0a10aea56320577a98fb15bcb0c8e04f3802d36e0caf67f4c85 |
|
MD5 | e9611eaac61a18fd91135706759d9fd9 |
|
BLAKE2b-256 | 9af86d7742dec2f0ee5bbaab5242080139b4bb278aafaaaac36050e383e14ccd |