alternatives to pyspark to query a csv file locally (no distributed computation needed)

I am reading a csv file with pyspark to extract some information from it. I am running pyspark locally and I do not need distributed computation. On the contrary I need some plotting library such as matplotlib to plot data. I know there are some workarounds to do it with pyspark but I found it very complicated.

My question is: is there any alternative to pyspark, possibly python-native, that allows to query a csv file allowing to use python libraries?

Topic library csv pyspark python

Category Data Science


pandas can do it. It can read in a csv file with a single line and put the data in a dataframe that you can manipulate.

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.