Graphics, Figures & TablesPgftables date

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
ahmedlasheen
Posts: 43
Joined: Wed Oct 27, 2010 10:25 pm

Pgftables date

Post by ahmedlasheen »

Hello all
I am trying to use the pgftable package to insert table from file.
The table is one column that contain date like 01-08-2002.
I tried alot to inset, but the code doesnot work, also the there is no error.
I attached the data file.
Thanks in advance
Here is the code

Code: Select all

\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\pagestyle{empty}
\usepackage{pgfplotstable}
\usepackage{array}
\usepackage{colortbl}
\usepackage{booktabs}
\usepackage{eurosym}
\usepackage{amsmath}
\usepackage{pgfplotstable}
\usepackage{pgfcalendar}
\begin{document}
\pgfplotstabletypeset[
	columns={date},
	column type=r,
	columns/date/.style={date type={\monthname\ \year}},
]
	{stdgre.dat}
\end{document}
Attachments
stdgre.dat
(275 Bytes) Downloaded 303 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

feuersaenger
Posts: 34
Joined: Sun Oct 16, 2011 5:56 pm

Pgftables date

Post by feuersaenger »

Hi,

You told it to load columns={date} but there is no such column. I get

! Package pgfplots Error: Sorry, could not retrieve column 'date' from table 'stdgre.dat'. Please check spelling (or introduce name aliases)..


A fix is to insert the string "date" as first line into the data file

Code: Select all

date
01-08-1993
01-07-1994
01-10-1994
01-09-1995
01-10-1995
01-07-1996
01-10-1996
01-07-1997
01-08-1997
01-09-1997
01-04-1998
01-09-2001
01-04-2003
01-05-2003
01-10-2003
01-05-2004
01-05-2005
01-08-2006
01-10-2008
01-04-2009
01-05-2009
01-06-2009
01-07-2009
01-08-2009
01-09-2009
P.png
P.png (6.77 KiB) Viewed 4049 times
ahmedlasheen
Posts: 43
Joined: Wed Oct 27, 2010 10:25 pm

Re: Pgftables date

Post by ahmedlasheen »

Thanks a lot
this solve the problem.
Post Reply