Tagged Questions

5
votes
2answers
673 views

Is it possible to keep the column order using the Python csv DictReader

For example, my csv has columns as below: ID, ID2, Date, Job No, Code I need to write the columns back in the same order. The dict jumbles the order immediately, so I believe it's more of a ...
4
votes
2answers
3k views

How to create probability density function graph using csv dictreader, matplotlib and numpy?

I'm trying to create a simple probability density function(pdf) graph using data from one column of a csv file using csv dictreader, matplotlib and numpy... Is there an easy way to use CSV DictReader ...
2
votes
3answers
727 views

Fastest way to do data type conversion using csv.DictReader in python

I'm working with a CSV file in python, which will have ~100,000 rows when in use. Each row has a set of dimensions (as strings) and a single metric (float). As csv.DictReader or csv.reader return ...
2
votes
2answers
739 views

Python DictReader - Skipping rows with missing columns?

I have a Excel .CSV file I'm attempting to read in with DictReader. All seems to be well, except it seems to omit rows, specifically those with missing columns. Our input looks like: ...
1
vote
3answers
106 views

How to ignore blank rows in a csv file

I'm using dictreader to open some csv files, adding them to one big list of dictionaries, and then using dictwriter to write the list of dictionaries out to one csv file. The problem I'm having is ...
1
vote
3answers
72 views

Error while converting to float

I am trying to read a file using csv.DictReader I have a field that is supposed to be an integer.if it is empty i will set it as DEFAULT if it is an integer i do nothing.if it is not an integer i ...
0
votes
1answer
43 views

Creating a dictionary from csv file

I was given the following problem and I am a little uncertain. I understand that the dictionary contains each town and their distance from each city, but is it structured like {Albury: ...
0
votes
2answers
46 views

Use of csv.DictReader in Python to create a dictionary in memory where heading are keys and colums are lists

What is an elegant way to use csv.DictReader to create a dictionary in memory where the headers of the csv file are keys, and the columns are lists. domething like: So, if the csv file is as ...
0
votes
5answers
665 views

reading a CSV files columns directly into variables names with python

I want to read a CSV file's columns directly into variables. The result should be something like you would get with the following shell line: while IFS=, read ColumnName1 ColumnName2 ColumnName3 ...
0
votes
1answer
170 views

Python: Using dictwriter, but setting value types?

I'm just beginning at Python and stackoverflow, forgive me for any mistakes... I'm trying to use dictreader and dictwriter for a project of mine. Basically I have a dictionary of songs, which ...
0
votes
3answers
305 views

DictReader, No quotes, tabbed file

I have a csv file that looks like this: Please note, there are no quotes, a tab (\t) is the delimiter, and there is a blank line between the header and the actual content. Facility No Testing No ...
0
votes
2answers
283 views

Getting specific line and value with Python DictReader

I have a csv file and am trying to get one specific value on, say, line 20, column 3. But so far, all I managed is to display all values on column 3 (here called "name"). Here is my Python code d = ...
0
votes
2answers
218 views

TypeError upon merely opening a file with csv.DictReader?

I've just uploaded this CSV file via a form, POSTing it to my Python CGI script. The upload seems to have completed successfully. Permissions on the folder are 777, on the file are 755. >>> ...
0
votes
4answers
5k views

Python CSV DictReader/Writer issues

I'm trying to extract a bunch of lines from a CSV file and write them into another, but I'm having some problems. import csv f = open("my_csv_file.csv", "r") r = csv.DictReader(f, delimiter=',') ...
-1
votes
3answers
132 views

Problems assigning dict values to variables

I am struggling with something that must be one of those 'it is so obvious I am an idiot' problems. I have a csv file that I want to read in and use to create individual 'tables'. I have a variable ...