emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Eric S Fraga <esflists@gmail.com>
To: Peter Davis <pfd@pfdstudio.com>
Cc: emacs-orgmode@gnu.org
Subject: Re: Trying to get chart from table working
Date: Sat, 30 Sep 2017 14:25:28 +0100	[thread overview]
Message-ID: <871smoxqrb.fsf@gmail.com> (raw)
In-Reply-To: <1506720729.1291151.1122958984.5896B03B@webmail.messagingengine.com> (Peter Davis's message of "Fri, 29 Sep 2017 17:32:09 -0400")


[-- Attachment #1.1: Type: text/plain, Size: 758 bytes --]

On Friday, 29 Sep 2017 at 17:32, Peter Davis wrote:
> I'm sorry to belabor this, but I could use some help. I'd be willing to
> pay a modest consulting fee, but I'm trying to solve a problem in a
> timely way, as it would help me with healthcare decisions.
>
> Basically, I want to plot a time series graph showing my PSA (prostate
> specific antigen) over time. The PSA is measured at irregular intervals,
> and has been for over 4 years (and hopefully will continue for many more
> years.) That should be a simple enough graph. I've already got a
> javascript d3 example that does this, but I'd like to embed it in a
> document, and to be able to generate PDF.

This part is relatively straightforward.  Using your data example, you
can do the following:


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: t.org --]
[-- Type: text/x-org, Size: 439 bytes --]

* table
#+name: measurements
|       Date | PSA |         |
|------------+-----+---------|
| 2017-08-11 | 185 |         |
| 2017-08-21 |     | #ffdd99 |
| 2017-09-19 | 854 | #ffdd99 |

#+begin_src gnuplot :var data=measurements :file timeseries.pdf :results file
  set xdata time
  set timefmt "%Y-%m-%d"
  set xrange ["2017-08-01":"2017-10-01"]
  unset key
  plot data using 1:2 with histeps
#+end_src

#+results:
[[file:timeseries.pdf]]

[-- Attachment #1.3: Type: text/plain, Size: 307 bytes --]


The colouring bit is harder and I don't know whether it's possible or
not.  I suggest you look at examples on the web, e.g.

http://gnuplot.sourceforge.net/demo/

to see if anything fits what you are trying to do.

HTH,
eric

-- 
: Eric S Fraga via Emacs 27.0.50, Org release_9.1.1-78-gfbf47c

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 194 bytes --]

  reply	other threads:[~2017-09-30 13:25 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-29 14:16 Trying to get chart from table working Peter Davis
2017-09-29 14:51 ` Eric S Fraga
2017-09-29 15:42   ` Peter Davis
2017-09-29 15:46     ` Peter Davis
2017-09-29 21:32       ` Peter Davis
2017-09-30 13:25         ` Eric S Fraga [this message]
2017-10-01 13:47           ` Peter Davis
2017-10-01 18:51             ` Thierry Banel
2017-10-01 19:06               ` Peter Davis
2017-10-02 10:27                 ` Eric S Fraga
2017-10-02 11:21                   ` Peter Davis
2017-10-02 12:59                     ` Eric S Fraga
2017-10-02 13:54                       ` Peter Davis
2017-10-02 13:58                         ` Peter Davis
2017-10-02 14:24                           ` Peter Davis
2017-10-02 15:37                             ` Eric S Fraga
2017-10-02 19:39                               ` Peter Davis
2017-10-03  8:14                                 ` Eric S Fraga
2017-10-03 14:37                                 ` Nick Dokos
2017-10-03 14:56                                   ` Peter Davis
2017-10-03 17:23                                     ` Nick Dokos
2017-10-03 19:28                                       ` Peter Davis
2017-10-04  5:36                                         ` Eric S Fraga
2017-10-04 11:24                                           ` Peter Davis
2017-10-04 11:49                                             ` Peter Davis
2017-10-04 12:48                                               ` Eric S Fraga
2017-10-04 13:12                                                 ` Peter Davis
2017-10-04 16:30                                               ` Eric S Fraga
2017-10-04 12:47                                             ` Eric S Fraga
2017-10-05 14:39                                             ` Nicolas Goaziou
2017-10-05 16:04                                               ` Peter Davis
2017-10-02 15:12           ` Nick Dokos
2017-10-02 15:40             ` Eric S Fraga
2017-10-02 11:22         ` Robert Horn
2017-10-02 11:29           ` Peter Davis

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=871smoxqrb.fsf@gmail.com \
    --to=esflists@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=pfd@pfdstudio.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).