emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: John Kitchin <jkitchin@andrew.cmu.edu>
To: Roger Mason <rmason@mun.ca>
Cc: org-mode-email <emacs-orgmode@gnu.org>
Subject: Re: Output result of source block to a file
Date: Fri, 07 Jun 2019 11:01:58 -0400	[thread overview]
Message-ID: <m2y32dcuc9.fsf@andrew.cmu.edu> (raw)
In-Reply-To: <y658sudsojv.fsf@mun.ca>

you probably figured out the "import io" and "f = io..." line are not
necessary here.

I couldn't figure out a reasonable way to use :results graphics link
that didn't result in repeating the filename more than desired. These
also both work, but seem to both require repeating the filename twice.

#+BEGIN_SRC python :results graphics link :var fname="test.png" :file "test.png"
import matplotlib.pyplot as plt

plt.plot([1, 2, 3, 1])
plt.savefig(fname)
#+END_SRC

#+BEGIN_SRC python :results graphics link :file "test.png"
import matplotlib.pyplot as plt

plt.plot([1, 2, 3])
plt.savefig("test.png")
#+END_SRC

Something like this should work, but there seem to be some extra bytes
getting put in the png file from the decoding, and latin-1 is the only
one I can get to work. If anyone knows how to get this to work, I am
interested in seeing it!

#+BEGIN_SRC python :results value :file "io.png"
import matplotlib.pyplot as plt
import io
buf = io.BytesIO()

plt.plot([1, 2, 3])
plt.savefig(buf, format='png')

s = buf.getvalue()
return s.decode('latin-1')
#+END_SRC


In general though, all of these are much more work than using
ob-ipython, which just puts images in the buffer for you.

Roger Mason <rmason@mun.ca> writes:

> Hello John,
>
> John Kitchin <jkitchin@andrew.cmu.edu> writes:
>
>> I think you can use something like this:
>>
>> #+BEGIN_SRC python :results output file :var fname="test.png"
>> import matplotlib.pyplot as plt
>> import io
>>
>> f = io.StringIO()
>> plt.plot([1, 2, 3, 17])
>> plt.savefig(fname)
>> print(fname, end='')
>> #+END_SRC
>>
>> It is in Python3.
>
> Thank you.  That works.
>
> Best wishes,
> Roger


--
Professor John Kitchin
Doherty Hall A207F
Department of Chemical Engineering
Carnegie Mellon University
Pittsburgh, PA 15213
412-268-7803
@johnkitchin
http://kitchingroup.cheme.cmu.edu

  reply	other threads:[~2019-06-07 15:02 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-05 10:41 Output result of source block to a file Roger Mason
2019-06-05 13:17 ` stardiviner
2019-06-06 11:36   ` Roger Mason
2019-06-07 11:05     ` stardiviner
2019-06-06 18:04   ` Roger Mason
2019-06-06 21:12     ` John Kitchin
2019-06-07 10:00       ` Roger Mason
2019-06-07 15:01         ` John Kitchin [this message]
2019-06-08 10:51           ` Roger Mason
2019-06-08 20:40             ` John Kitchin
2019-06-05 13:33 ` Ken Mankoff
2019-06-06 11:48   ` Roger Mason

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=m2y32dcuc9.fsf@andrew.cmu.edu \
    --to=jkitchin@andrew.cmu.edu \
    --cc=emacs-orgmode@gnu.org \
    --cc=rmason@mun.ca \
    /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).