From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jack Kamm Subject: Re: Refresher on including R/ggplot2 output via latex/pdf? Date: Sun, 27 Oct 2019 23:15:45 -0700 Message-ID: <875zk9qtta.fsf@gmail.com> References: <87sgndlcbe.fsf@gmail.com> <87imo9lavb.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:39206) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iOyID-0007jv-OI for emacs-orgmode@gnu.org; Mon, 28 Oct 2019 02:14:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iOyIC-0004wE-Df for emacs-orgmode@gnu.org; Mon, 28 Oct 2019 02:14:17 -0400 Received: from mail-pf1-x42f.google.com ([2607:f8b0:4864:20::42f]:34118) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iOyIC-0004vw-6M for emacs-orgmode@gnu.org; Mon, 28 Oct 2019 02:14:16 -0400 Received: by mail-pf1-x42f.google.com with SMTP id b128so6192537pfa.1 for ; Sun, 27 Oct 2019 23:14:16 -0700 (PDT) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: John Hendy Cc: emacs-orgmode > This is with emacs -Q and loading the minimal config from the initial > email. Any ideas on where I might look next? Sorry, I don't have many ideas here. Have you checked that ggplot works fine in a regular R session? I tried again with emacs -Q and the minimal config below and it still worked fine for me: ---- ;; set load paths ;; set load dirs and global config options (add-to-list 'load-path "~/.emacs.d/elpa/org-plus-contrib-20190729/") (add-to-list 'load-path "~/.emacs.d/elpa/ess-20190627.1806/") (require 'ess) (require 'ess-r-mode) ; setup babel languages (org-babel-do-load-languages 'org-babel-load-languages '((R . t))) ----