From mboxrd@z Thu Jan 1 00:00:00 1970 From: flav@epita.fr Subject: table, columns and plot Date: Tue, 26 Jan 2016 11:20:06 +0100 Message-ID: <86twm0bq21.fsf@epita.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38336) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aO0t2-00074T-H1 for emacs-orgmode@gnu.org; Tue, 26 Jan 2016 05:30:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aO0sz-0005AD-B5 for emacs-orgmode@gnu.org; Tue, 26 Jan 2016 05:30:12 -0500 Received: from plane.gmane.org ([80.91.229.3]:35622) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aO0sz-0005A4-40 for emacs-orgmode@gnu.org; Tue, 26 Jan 2016 05:30:09 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1aO0su-0002bR-7w for emacs-orgmode@gnu.org; Tue, 26 Jan 2016 11:30:04 +0100 Received: from 212-198-45-62.rev.numericable.fr ([212.198.45.62]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 26 Jan 2016 11:30:04 +0100 Received: from flav by 212-198-45-62.rev.numericable.fr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 26 Jan 2016 11:30:04 +0100 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi ! I want to plot the extract of columns : But, the gnuplot block do not found the tab1. Is it possible to name the columnview table ? Org-mode version 8.3.3 (8.3.3-17-gce80a0-elpa @ /home/flav/.emacs.d/elpa/org-20160118/) Thks * Synthèse #+name: tab1 #+begin: columnview :hlines 1 :id "prj_encours" | prj | Client | Acteurs | Début | Charges | |-----+--------+---------+-------------------+---------| | | | | | | | p1 | c1 | a1, a2 | [2016-01-26 mar.] | 10 | | p2 | c2 | a3 | [2017-01-02 lun.] | 12 | #+end #+begin_src gnuplot :var data=tab1 :file syn_prj.png reset # ZZset terminal png transparent truecolor set grid set style data histograms set key top left outside horizontal autotitle columnhead set style histogram cluster gap 1 set boxwidth 0.9 relative set style fill solid 1.0 border -1 set xtics rotate by 30 set xtics offset 0,-1.0 plot data using 5:xticlabels(1) #+end_src #+RESULTS: [[file:syn_prj.png]] * prj en cours :PROPERTIES: :ID: prj_encours :COLUMNS: %prj %Client %Acteurs %Début %Charges :END: ** mig UIM :PROPERTIES: :prj: p1 :Client: c1 :Acteurs: a1, a2 :Début: [2016-01-26 mar.] :Charges: 10 :END: ** D-Series :PROPERTIES: :prj: p2 :Client: c2 :Acteurs: a3 :Début: [2017-01-02 lun.] :Charges: 12 :END: * prj archives -- flav