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}