Skip to main content

A toolkit for calculating process entropy quickly. With specific applications to tweets.

Project description

ProcessEntropy

A toolkit for calculating process entropy quickly. With specific applications to tweets.

Example Usage

# Load in tweets between 2018/11/16 to 2019/01/01
import pandas as pd
with open("example_data/BBCWorld_Tweets_small.csv", 'r') as f:
    BBC = pd.read_csv(f)

with open("example_data/BuzzFeedNews_Tweets_small.csv", 'r') as f:
    BuzzFeed = pd.read_csv(f)


# Find process entropy of BuzzFeed tweets
from ProcessEntropy.CrossEntropy import tweet_self_entropy

print(tweet_self_entropy(BuzzFeed['tweet']))


# Find cross entropy between BuzzFeed and BBC World
from ProcessEntropy.CrossEntropy import timeseries_cross_entropy

target = list(zip(BuzzFeed['created_at'], BuzzFeed['tweet']))
source = list(zip(BBC['created_at'], BBC['tweet']))

print(timeseries_cross_entropy(target, source))



Requirements

  • Python 3.x with packages:
    • Numba
    • NTLK
    • Numpy

Installation

pip install ProcessEntropy

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ProcessEntropy-0.4.dev0.tar.gz (6.0 kB view hashes)

Uploaded Source

Built Distribution

ProcessEntropy-0.4.dev0-py3-none-any.whl (8.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page