Skip to content

phackstock/nuudel-best-time-finder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nuudel best time finder

In a poll like this:

2023-06-05 2023-06-07 2023-06-08 2023-06-12 ...
Alice Yes No No Yes ...
Bob No No No Yes ...
Carl Yes Yes No No ...
Dave Yes No No Yes ...
Eve No No No Yes ...
Francis No No No No ...
... ... ... ... ... ...

a common task is to find the set of two or more days that cover as many people as possible.

This tool works with the poll service nuudel (https://nuudel.digitalcourage.de/), reads the data directly from a given poll and finds the best combinations for any number of times.

Install

Install using pip:

pip install nuudel-best-time-finder

How to use

Say we have a nuudel poll at: https://nuudel.digitalcourage.de/nuudel-poll-id and want to find two dates that cover the most amount of people simply run the following in your console:

nuudel-find-best-times {nuudel-poll-id} 2 --results-file results.csv

or alternatively as part of a script:

from nuudel_best_time_finder import find_best_times

find_best_times(poll = "{nuudel-poll-id}", n = 2, results_file = "results.csv")

The results are then written to a file called results.csv with three columns:

  • Time combinations
  • Number of people covered by the combination
  • Percent coverage out of all participants

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages