The CSV tag concerns text-based files containing tabular material using commas as a separator.
5
votes
2answers
158 views
How can I plot bigger amounts of data?
I am currently playing around with hailstone sequences (collatz numbers).
I would like to create a plot like this (from Wikipedia):
But I don't know how this kind of plot is called (it's neither a ...
5
votes
2answers
939 views
How to plot data from a CSV file using tikz and csvsimple?
Here is a minimal example :
\begin{filecontents*}{data.csv}
a,b,c,d
1,4,5,1
2,3,1,5
3,5,6,1
4,1,4,9
5,3,4,7
\end{filecontents*}
\documentclass{article}
\usepackage[utf8]{inputenc}
...
6
votes
3answers
1k views
Are there tools for importing from CSV to BibTeX?
I'm seeking a way to get my books database, stored on Goodreads, into BibTeX form. As near as I can tell, Goodreads provides no support for this directly, but does provide for CSV export (on the ...
2
votes
1answer
104 views
read strings from csv file for usage as figure meta data
I got the following problem, I use pgfplots(table) to generate plots and tables in my latex document from generated data. I would like to read additional information from a metadata file. The reason ...