New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

csv-to-boxplot

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

csv-to-boxplot

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

latest
npmnpm
Version
0.1.0
Version published
Weekly downloads
10
66.67%
Maintainers
1
Weekly downloads
 
Created
Source

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

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}

Keywords

csv

FAQs

Package last updated on 14 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts