Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

org-mode clock tables and charts

Tags:

emacs

org-mode

Is there a way to generate for org-mode (logging work), a two-dimensional table where rows are tasks and columns are successive days of a week/month or successive weeks, cells are the time; or a corresponding chart?

I'm only aware of the hacky rangereport from http://sachachua.com/blog/2007/12/clocking-time-with-emacs-org/

like image 536
lukstafi Avatar asked Jan 10 '13 14:01

lukstafi


People also ask

How do you make a table in Org mode?

The easiest way to create a table is to directly type the "|" character at the beginning of a line, or after any amount of white space. This will put you in the first field of an atomic table. Once you've finished editing this cell, you can jump to the next one by pressing TAB .

What are org mode files?

Org Mode (also: org-mode; /ˈɔːrɡ moʊd/) is a document editing, formatting, and organizing mode, designed for notes, planning, and authoring within the free software text editor Emacs.

How do I use org Mode in Emacs?

To save the document, either press the save icon, or press C-x C-s, call it 1.org. Emacs does not actually understand you are editing an Org document, yet. To enable Org mode on your current document, type M-x org-mode which will enable the Org mode on the current document. Those are minuses, not underscores.


1 Answers

I couldn't completely understand what kind of a table you require, but you could press Shift+R (org-agenda-clockreport-mode) on your agenda buffer to see a table with tasks in rows sorted according to projects and how much time was spent on it. You could change the scope of the table by changing the time period of the agenda and rebuilding the agenda.

enter image description here

You could also use C-c C-x C-d or org-agenda-columns in the org file itself to get a task-wise overview.

enter image description here

Hope this helps!

like image 93
prtksxna Avatar answered Sep 22 '22 06:09

prtksxna