jankaszel / csv-to-boxplot

process CSV row-based values into PGF-suited values for boxplot visualization

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

csv-to-boxplot

a small tool to convert CSV-based data (e.g., from a google spreadsheet) into data that can be used by the LaTeX pgfplots library to display boxplots. the tool doesn't feature a sophisticated CSV parser: it expects the input to have a header row and all other values to be numeric and comma-separated.

the tool expects data to be one column per item (e.g., a survey question). see test.csv for an example.

usage

the tool is written in javascript and uses the node.js runtime. install it with npm, node's microsoft-owned package manager:

npm install -g csv-to-boxplot

exemplary usage: run # cat test.csv | csv-to-boxplot > boxplot.txt in your terminal. in your TeX document, import the data as follows:

\begin{tikzpicture}
  \begin{axis} [box plot width=2mm]
    \boxplot [forget plot, red] {boxplot.txt}
  \end{axis}
\end{tikzpicture}

About

process CSV row-based values into PGF-suited values for boxplot visualization

License:MIT License


Languages

Language:JavaScript 100.0%