Tasks Wordcloud

[ analysis-recipe ]

Create a word cloud using the text of the tasks you completed last year.

prerequisites

  1. capture completed tasks every day. ex: iDoneThis
  2. export your csv of idonethis data from the year
  3. have a working python/pip install

steps

cd ~/Code
virtualenv word-cloud
cd word-cloud
source bin/activate
pip install wordcloud
mv ~/Downloads/export.csv 2017-idonethis.csv
pip install csvkit

bin/wordcloud_cli.py --help

cat 2017-idonethis.csv| csvcut -c body | bin/wordcloud_cli.py --width 600 --height 600 --margin 10 > 2017.png

Updated At: 2024-04-20 05:21 +0000 (178d789)

🛠 by Tom Hummel