-1
votes
1answer
51 views

Convert Str to Float in csv

I'm running into a little error where I open up a csv file set up as 10 columns by 100 rows. I want to first convert all the numbers in it from str into floats. Then turn each column of numbers into ...
0
votes
1answer
40 views

pandas resample doesn't work with numpy 1.7

This code worked on my other computer with NumPy 1.6: import pandas as pd from pandas import DataFrame import numpy as np ...
1
vote
2answers
27 views

loading strings with spaces as numpy array

I would like to load a csv file as a numpy array. Each row contains string fields with spaces. I tried with both loadtxt() and genfromtxt() methods available in numpy. By default both methods ...
2
votes
3answers
54 views

Getting data from .csv file python (panda)

I am working on a python project where I have a .csv file like this. freq,ae,cl,ota 825,1,2,3 835,4,5,6 850,10,11,12 880,22,23,24 910,46,47,48 960,94,95,96 1575,190,191,192 1710,382,383,384 ...
1
vote
2answers
57 views

Numpy import from CSV and convert columns to float [duplicate]

ok, so i have a numpy array loaded from a CSV file, the array looks like : array([['0', '3', '22', ..., '7.25', '1', '0'], ['1', '1', '38', ..., '71.2833', '0', '0'], ['1', '3', '26', ...
0
votes
3answers
41 views

Convert a numpy array to a CSV string and a CSV string back to a numpy array

I have to convert a numpy array of floats to a string (to store in a SQL DB) and then also convert the same string back into a numpy float array. This is how I'm going to a string (based on this ...
2
votes
3answers
233 views

Need to compare very large files around 1.5GB in python

"DF","00000000@11111.COM","FLTINT1000130394756","26JUL2010","B2C","6799.2" "Rail","00000.POO@GMAIL.COM","NR251764697478","24JUN2011","B2C","2025" ...
1
vote
2answers
58 views

Write comma separated values from python numpy array

I'm creating a custom file writer. I need to write out the values of my array as comma separated into one line in the file. I could do the following: def as_csv(array): return ','.join([str(i) ...
0
votes
1answer
37 views

how to split one dimentional array returned by numpy.loadtxt

I am using the below code to read an array from a csv file. na_orders = np.loadtxt(orders_file, delimiter=',', skiprows=0,dtype='i4,i4,i4,S5,S4,f4') this return a one dimentional [(2011, 1, 10, ...
0
votes
0answers
224 views

matplotlib creating and updating graphs from csv file (csv file updates every second)

I have written this code to create a graph from a csv file and would like to continually update the graphs while the csv file updates. It is working at the moment but I have a few questions. 1. How ...
0
votes
1answer
80 views

NumPy genfromtxt: using filling_missing correctly

I am attempting to process data saved to CSV that may have missing values in an unknown number of columns (up to around 30). I am attempting to set those missing values to '0' using genfromtxt's ...
4
votes
1answer
41 views

Write NDArray into JSON and .CV File

I have an ndarray of size 9742 rown x 26 columns. It has types like date, integers, floats etc. and column headers like "Date", "Amount","Marks" and so on.... The thing is, I wanted to save it row by ...
0
votes
1answer
410 views

Numpy - ValueError: cannot set an array element with a sequence

So, I wrote small test code for calculating the averages from all the csv files in a folder. parser = argparse.ArgumentParser(description='avg data from csv to csv') parser.add_argument('--input', ...
0
votes
2answers
432 views

Python - ValueError: invalid literal for float():

I've a csv file and I am trying to calculate the average of each of the columns present in it. #!/usr/bin/python with open('/home/rnish/Desktop/lbm-reference.dat.ref-2013-01-30-13-00-15big.csv', ...
2
votes
1answer
258 views

Read Values from .csv file and convert them to float arrays

I stumbled upon a little coding problem. I have to basically read data from a .csv file which looks a lot like this: 2011-06-19 ...
3
votes
3answers
337 views

numpy read CSV file where some fields have commas?

I'm trying to read a CSV file using numpy.recfromcsv(...) where some of the fields have commas in them. The fields that have commas in them are surrounded by quotes i.e., "value1, value2". Numpy see's ...
1
vote
1answer
117 views

Pass regex to delimiter field in python's csv module or numpy's genfromtxt / loadtxt?

I have tabulated data with some strange delimination (i.e. groups of values separated by commas, seperated from other values by tabs): A,345,567 56 67 test Is there a clean and clever way of ...
1
vote
1answer
62 views

Return column conditionally in python using numpy

I have the following dataset in a file called test.csv: ID,ENROLLMENT_DATE,TRAINER_MANAGING,TRAINER_OPERATOR,FIRST_VISIT_DATE 1536D,12-Feb-12,"06DA1B3-Lebanon NH",,15-Feb-12 ...
1
vote
1answer
146 views

Merging numpy ndarray from CSVs

I have the following code: from numpy import genfromtxt nysedatafile = os.getcwd() + '/nyse.txt'; nysedata = genfromtxt(nysedatafile, delimiter='\t', names=True, dtype=None); nasdaqdatafile = ...
2
votes
3answers
321 views

how do I remove rows/columns from this matrix using python

My matrix looks like this. ['Hotel', ' "excellent"', ' "very good"', ' "average"', ' "poor"', ' "terrible"', ' "cheapest"', ' "rank"', ' "total reviews"'] ['westin', ' 390', ' 291', ' 70', ' 43', ' ...
2
votes
4answers
188 views

parsing this csv file in python(pylab) and converting it into a dictionary

I have this code: data = np.genfromtxt('csv_data.csv', dtype=None, names=True) print data It results in the following output [('westin,390,291,70,43,19,215,27,813',) ...
1
vote
3answers
210 views

Convert a text CSV binary file and get a random line from it in Python without reading it to memory

I have some CSV text files in the format: 1.3, 0, 1.0 20.0, 3.2, 0 30.5, 5.0, 5.2 The files are about 3.5Gb in size and I cannot read any of them in to memory in Pandas in a useful amount of time. ...
0
votes
3answers
2k views

Read CSV file to numpy array, first row as strings, rest as float

I have data stored in a CSV where the first row is strings (column names) and the remaining rows are numbers. How do I store this to a numpy array? All I can find is how to set data type for columns ...
0
votes
2answers
152 views

code is working but with a 'DeprecationWarning' -scipy.stats

I wrote this code to calculate the mode and standard deviation for a large sample: import numpy as np import csv import scipy.stats as sp import math r=open('stats.txt', 'w') #file with results ...
0
votes
3answers
214 views

Trying to write numpy array (generated through a loop) into csv format

I have a code that generates a 1-D numpy array in each iteration. I want the arrays to get appended to the end of a CSV file so that I can read all data from Excel. I am currently trying the following ...
1
vote
2answers
208 views

Why are the following objects numpy strings instead of datetime.datetime objects?

I have a csv file arranged as follows: Person,Date1,Date2,Status Person1,12/10/11,17/10/11,Done ... I want to perform various operations on it and I'm starting by pulling it into Python and ...
0
votes
1answer
626 views

Write multiple NumPy arrays into CSV file in separate columns?

How to write multiple numpy arrays into one csv file in multiple columns? import numpy import csv arrA = numpy.array(file.root.a) arrB = numpy.array(file.root.b) arrC = numpy.array(file.root.c) for ...
1
vote
1answer
199 views

Using python dtype as headers for compressed csv

I have a 1D numpy array of tuples with structured dtype. I am using np.savetxt to write the array to a (compressed) csv file. I would simply like to add the field names from the dtype as the header ...
1
vote
1answer
158 views

accessing/segmenting columns in a numpy recarray

Python beginner here. I've embarassingly spent the past two hours trying to figure this out. I've got a CSV file containing data from rows 14 to 86 and columns A to X. I bring this into a numpy ...
1
vote
5answers
3k views

Loading a file into a structured array with python

So I'm very green with Python and am trying to learn by replicating some matlab code I've written. I have a part where, in matlab, I load a data file that's tab-delimited. The syntax x = ...
0
votes
1answer
323 views

Converting ill-formed csv file to numpy array

I have a csv file with 7 rows, out of which 5 rows have 7 columns and the last two have 2 columns. These files are also a mix of strings, floats and NaNs. e.g: ...
1
vote
1answer
1k views

Python Writing a numpy array to a CSV File

I'm trying to write a 2D numpy array to a CSV File I tried this: import csv import numpy as np w = csv.writer(open('main.csv','w')) Nlayers=23 N=364 TempLake=np.zeros((N,Nlayers)) for i in ...
0
votes
1answer
1k views

How to modify 2d Scatterplot to display color based off third array in csv file?

I am using Python and a CSV file. I am currently trying to modify the scatter plot(2d) below to change colors based on a third column in my csv file. After searching through multiple posts, I ...
1
vote
2answers
400 views

Python plotting time versus packets based on csv file

I have a bunch of data in a text file like this: 99150, 2012-05-18 14:30:08.592276 100350, 2012-05-18 14:31:09.093357 97710, 2012-05-18 14:32:09.583485 94980, 2012-05-18 14:33:10.047794 95670, ...
2
votes
2answers
158 views

Python : How to load column from multiblock csv tables?

I'm working on a fit program for SIP data right now. Unfortunately the data comes within a csv table with the following structure : f; Abs(Zm); Std(Abs); Phi(Zm); Std(Phi); ...
3
votes
1answer
1k views

Python/Numpy - Save Array with Column AND Row Titles

I want to save a 2D array to a CSV file with row and column "header" information (like a table). I know that I could use the header argument to numpy.savetxt to save the column names, but is there ...
1
vote
1answer
330 views

Python csv writer truncates number format

I'm printing the contents of an array with a header. The array contains very small numbers which python prints in exponent format. When printing with csv writers and headers in a numpy row_stack the ...
7
votes
4answers
3k views

Python out of memory on large CSV file (numpy)

I have a 3GB CSV file that I try to read with python, I need the median column wise. from numpy import * def data(): return genfromtxt('All.csv',delimiter=',') data = data() # This is where it ...
7
votes
2answers
2k views

selecting across multiple columns with python pandas?

I have a dataframe df in pandas that was built using pandas.read_table from a csv file. The dataframe has several columns and it is indexed by one of the columns (which is unique, in that each row has ...
3
votes
1answer
549 views

indexing several csv files with pandas from records?

I have a list of csv files ("file1", "file2", ...") that have two columns but do not have header labels. I'd like to assign them header labels and them as a DataFrame which is indexed by file and then ...
2
votes
2answers
525 views

making histogram from a csv file

I am trying to read a column of data from a csv file and create a histogram for it. I could read the data into an array but was not able to make the histogram. Here is what I did: ...
2
votes
1answer
624 views

genfromtxt dtype=None returns wrong shape

I'm a newcomer to numpy, and am having a hard time reading CSVs into a numpy array with genfromtxt. I found a CSV file on the web that I'm using as an example. It's a mixture of floats and strings. ...
1
vote
1answer
261 views

error in matplotlib library in python while using csv2rec

I am working in Ipython, trying to load a csv file. from matplotlib import * data=matplotlib.mlab.csv2rec('helix.csv',delimiter='\t') Here is the error message IOError ...
3
votes
1answer
151 views

Errors Writing CSVs with Python

I'm encountering errors in the .csv files that I'm writing with python (the necessary format because I'm on a team which depends on .csvs). In a non-patterned way, there are errors creeping up across ...
2
votes
1answer
81 views

writing “missing array values” to a file

import numpy as np f1= "test_io.csv" f2= "test_io2.csv" array = np.genfromtxt(f1,delimiter=',',missing_values = 'NA', filling_values = 1.e20) np.savetxt(f2,array,delimiter=',') ...
3
votes
1answer
2k views

numpy csv import problem

I am having some difficulty with importing data from a .csv file. I am simply trying to import the data and print the max value. Here is my code: >>> x, y = numpy.loadtxt('data.csv', ...
17
votes
2answers
8k views

Dump a NumPy array into a csv file

Is there a way to dump a NumPy array into a CSV file? I have a 2D NumPy array and need to dump it in human-readable format.
2
votes
1answer
864 views

Numpy.genfromtxt method works in windows but not Linux

I am doing some data crunching and I have built a program for Python in Windows and now I want to run it on my Linux box so it can crunch while I go home to drink beer, etc. One piece of the code (an ...
3
votes
4answers
236 views

Slice specific characters in CSV using python

I have data in tab delimited format that looks like: 0/0:23:-1.03,-7.94,-83.75:69.15 0/1:34:-1.01,-11.24,-127.51:99.00 0/0:74:-1.02,-23.28,-301.81:99.00 I am only interested in the first 3 ...
4
votes
2answers
8k views

load csv into 2D matrix with numpy for plotting

I am trying to do something very simple with numpy yet I seem to be failing. I am very familiar with Matlab but quite new to numpy. Given this CSV file: "A","B","C","D","E","F","timestamp" ...

1 2