Calculate Krippendorff's Alpha on any DataFrame
Project description
SimpleDorff - Calculate Krippendorff's Alpha on a DataFrame
Krippendorff's Alpha is a commonly used inter-annotator reliability metric, but it's hard to calculate on a Dataframe. This package makes it easy.
Made with ❤️ by LightTag - The Text Annotation Tool For Teams. We use this in production to give our customers a single number to understand the quality of their labeled data. Read the blog post here
Problem It Solves
Calculating Krippendorff's Alpha assumes data is formatted in a way that just doesn't appear in the wild. We wanted a package that could read a Dataframe in the formats we see in real life and give us the Alpha in one line.
Installing
pip install simpledorff
Usage
import simpledorff
import pandas as pd
Data = pd.read_csv('./examples/from_paper.csv') #Load Your Dataframe
Data.head()
Unnamed: 0 | document_id | annotator_id | annotation | |
---|---|---|---|---|
0 | 0 | 1 | A | 1.0 |
1 | 1 | 1 | B | 1.0 |
2 | 2 | 1 | D | 1.0 |
3 | 3 | 1 | C | NaN |
4 | 4 | 2 | A | 2.0 |
simpledorff.calculate_krippendorffs_alpha_for_df(Data,experiment_col='document_id',
annotator_col='annotator_id',
class_col='annotation')
0.743421052631579
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 simpledorff-0.0.2.tar.gz
.
File metadata
- Download URL: simpledorff-0.0.2.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 950a62fc1da97560267df72ed4087092e9d6d5352350a75ba8c0363fbd89f0f8 |
|
MD5 | ebda0da506d99cdedc166ce62246eaeb |
|
BLAKE2b-256 | 6e3b40412f60a133c19b9315ce3a1f1f974d3c92c4beb56fb999f46e999922d8 |
File details
Details for the file simpledorff-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: simpledorff-0.0.2-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e24a4d939da35755b9913285bcda592842a50956367f6ee0190e42888dbf8585 |
|
MD5 | 37c58f718837e60aa475f1f78f4dd47c |
|
BLAKE2b-256 | 720187d5dfd1a11fdc4115bf4fe6321cc6ae831c4f5bb02996fe33cecd4ae0db |