Tagged Questions
2
votes
3answers
50 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
...
-2
votes
0answers
50 views
Why accessing larger index in pandas series takes longer? [closed]
I have a function that I would like to apply element-wise to several series.
def my_fun(s1, s2, p1, p2, p3, angle_cutoff, s_cutoff):
a1 = xy2angle(p1, s1)
a2 = xy2angle(p2, s2)
if ...
4
votes
2answers
66 views
Is there universal if function in numpy?
I have three series. I need to do the following operation element-wise:
Compare values from the first and second series.
If first is larger take arc-sinus of the element from the third series.
...
4
votes
1answer
53 views
Extra Bin with Pandas Resample
I've got a pandas data frame defined like this:
last_4_weeks_range = pandas.date_range(
start=datetime.datetime(2001, 5, 4), periods=28)
...
0
votes
1answer
51 views
What is the Python (numpy or scipy or Pandas) equivalent for R's adjboxStats function?
I do use R to get the outliers for data set and I do use this snippet in R and it works like it's advertised to!
library("robustbase")
adjboxStats(c(11232.1, 234.2, 3445532344.3, 34302.3, 203.9, ...
-2
votes
1answer
48 views
How to prepare input for time delay neural network in Python? [closed]
Task 1)
Let X = [x_0, x_2, ..., x_t] be a numpy.array, how do you take pieces of X and create a new list addressing indexes, say for example: Y = [[x_1, ... ,x_(n-1)], [x_n, ..., x_(2n-1)], ...
1
vote
1answer
65 views
Pandas: fancy indexing a dataframe
I have a Pandas dataframe, df1, that is a year-long 5 minute timeseries with columns A-Z.
df1.shape
(105121, 26)
df1.index
<class 'pandas.tseries.index.DatetimeIndex'>
[2002-01-02 00:00:00, ...
1
vote
1answer
47 views
Pandas: Using Unix epoch timestamp as Datetime index
My application involves dealing with data (contained in a CSV) which is of the following form:
Epoch (number of seconds since Jan 1, 1970), Value
1368431149,20.3
1368431150,21.4
..
Currently i read ...
0
votes
1answer
32 views
Convert DataFrame with index-OHLC data to index-O index-L index-H index-O (flatten OHLC data)
I have a DataFrame which looks like that
Open High Low Close Volume (BTC) Volume (Currency) Weighted Price
Date ...
2
votes
1answer
79 views
How can I use a Pandas data structure to calculate autocorrelation?
I have data in text files that I have successfully parsed into a MultiIndex pandas structure however I don't know if what I have will do what I want it to do.
What I have is a lot of time series data ...
0
votes
2answers
57 views
Regression with Date variable using Scikit-learn
I have a Pandas DataFrame with a date column (eg: 2013-04-01) of dtype datetime.date. When I include that column in X_train and try to fit the regression model, I get the error float() argument must ...
3
votes
1answer
73 views
Find Unique Dates in Numpy Datetime Array
I have timeseries data (epoch, values) which i have transformed into (datetime, values), which is stored in Numpy arrays. Now i wish to find the indexes of the first row corresponding to a given day. ...
2
votes
1answer
43 views
Multiply all columns in a Pandas dataframe together
Is it possible to multiply all the columns in a Pandas.DataFrame together to get a single value for every row in the DataFrame?
As an example, using
df = pd.DataFrame(np.random.randn(5,3)*10)
I ...
0
votes
2answers
51 views
Parse a Pandas column to Datetime
I have a DataFrame with column named date. How can we convert/parse the 'date' column to a DateTime object?
I loaded the date column from a Postgresql database using sql.read_frame(). An example of ...
0
votes
2answers
61 views
Loop that will create new Pandas.DataFrame column
Following the scikit-learn tutorial here, if we have a Pandas.DataFrame that has a column named colors, how can we create a loop to loop through all of the DataFrame's columns (or a list containing ...
-1
votes
1answer
40 views
Plotting a Pandas DataSeries.GroupBy
I am new to python and pandas, and have the following DataFrame.
How can I plot the DataFrame where each ModelID is a separate plot, saledate is the x-axis and MeanToDate is the y-axis?
Attempt
...
2
votes
2answers
110 views
Pandas error: 'DataFrame' object has no attribute 'loc'
I am new to pandas and is trying the Pandas 10 minute tutorial with pandas version 0.10.1. However when I do the following, I get the error as shown below. print df works fine.
Why is .loc not ...
-1
votes
0answers
69 views
How do you replace values/cells in a pandas dataframe in python? [closed]
I am trying to parse data from an input file into a data frame that I made using the pandas module. To do this, I have made a data frame of the appropriate dimensions (100x50) full of zeros and am ...
1
vote
2answers
102 views
drop duplicates in Python Pandas DataFrame not removing duplicates
I have a problem with removing the duplicates. My program is based around a loop which generates tuples (x,y) which are then used as nodes in a graph. The final array/matrix of nodes is :
[[ 1. ...
2
votes
1answer
77 views
Efficiently take moving average of sparse data and filter above threshold in python
I am getting my feet wet with some genome analysis and am a little stuck. I have some very sparse data and need to find places where the moving average exceeds some threshold, marking each point as 1 ...
2
votes
1answer
90 views
Is there an efficient way to merge two sorted dataframes in pandas, maintaing sortedness?
If I have two dataframes (or series) that are already sorted on compatible keys, I'd like to be able to cheaply merge them together and maintain sortedness. I can't see a way to do that other than ...
4
votes
1answer
93 views
pandas handling of numpy timedelta64[ms]
>>> import pandas as pd
>>> pd.__version__
'0.11.0'
>>> import numpy as np
>>> np.__version__
'1.7.1'
>>> d={'a':np.array([68614867, 72200835], ...
0
votes
4answers
90 views
Inflating a 1D array into a 2D array in numpy
Say I have a 1D array:
import numpy as np
my_array = np.arange(0,10)
my_array.shape
(10, )
In Pandas I would like to create a DataFrame with only one row and 10 columns using this array. FOr ...
1
vote
1answer
51 views
handling zeros in pandas DataFrames column divisions in Python
What's the best way to handle zero denominators when dividing pandas DataFrame columns by each other in Python? for example:
df = pandas.DataFrame({"a": [1, 2, 0, 1, 5], "b": [0, 10, 20, 30, 50]})
...
0
votes
1answer
41 views
Can't convert dates to datetime64
The following piece of code:
import pandas as pd
import numpy as np
data = pd.DataFrame({'date': ('13/02/2012', '14/02/2012')})
data['date'] = data['date'].astype('datetime64')
works fine on one ...
2
votes
3answers
225 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
1answer
87 views
Pandas Timedelta in Days
I have a dataframe in pandas called 'munged_data' with two columns 'entry_date' and 'dob' which i have converted to Timestamps using pd.to_timestamp.I am trying to figure out how to calculate ages of ...
0
votes
2answers
53 views
To extract non-nan values from multiple rows in a pandas dataframe
I am working on several taxi datasets. I have used pandas to concat all the dataset into a single dataframe.
My dataframe looks something like this.
675 ...
1
vote
2answers
73 views
minimize rows with common values, add columns for additional values
I have an array, of the following format:
564387.29 7371625.14 0.00 33030.00 -132.96 -1031.50
564387.29 7371625.14 0.00 1530.00 -133.85 -1039.27
564387.29 7371625.14 0.00 ...
0
votes
1answer
77 views
Python pseudo inverse and determinant of a vector
How to compute the pseudo inverse of a vector and also the determinant? (preferably with either numpy, or better pandas)
I tried this but it doesn't work:
import numpy
vect = [1, 2, 3, 4]
...
4
votes
4answers
135 views
How to accumulate unique sum of columns across pandas index
I have a pandas DateFrame, df which I created with
df = pd.read_table('sorted_df_changes.txt', index_col=0, parse_dates=True, names=['date', 'rev_id', 'score'])
which is structured like so:
...
2
votes
2answers
86 views
Getting CDF of variable-sized numpy arrays in Python using same bins?
I'd like to make a set of comparable empirical CDFs for a few numpy arrays (each of different length) and store these in a pandas dataframe:
a = scipy.randn(100)
b = scipy.randn(500)
# ECDF from ...
1
vote
2answers
55 views
read_csv convert date in 3 columns to 1 column date format like YYYY-MM-DD using pandas in Python
Using the following code:
import pandas as pd
date_spec = {'transdate': [[0, 1, 2]]}
df2 = pd.read_csv('fruit.csv', header=None, parse_dates=date_spec)
print df2
I am trying to read a csv file ...
3
votes
2answers
89 views
shuffling/permutation a dataframe in pandas
What's a simple and efficient way to shuffle a dataframe in pandas, by rows or by columns? I.e. how to write a function shuffle(df, n, axis=0) that takes a dataframe, a number of shuffles n, and an ...
1
vote
0answers
83 views
How to set the default datatype as 'float32' for numpy & pandas? [duplicate]
My machine's RAM is 3G on Windows XP and 'float32' data's precision is enough for my current application (based on Pandas 0.10 + NumPy 1.6.2). So I want to reset the default floating datatype to ...
0
votes
2answers
93 views
Creating a large database from many files with pandas
I have many files (~2,000,000) generated by another program that I need to extract data from. These files have common indices with a different value for different methods, I am not sure how to phrase ...
0
votes
1answer
92 views
Choosing particular rows from pandas dataframe
I have performed a group by in the pandas dataframe to see how many rows are there for each location and each date.
agg_count = df.groupby(['date', 'location']).count()
Now I want to see the rows ...
0
votes
1answer
161 views
how to perform an inner or outer join of DataFrames with Pandas on non-simplistic criterion
Given two dataframes as below:
>>> import pandas as pd
>>> df_a = pd.DataFrame([{"a": 1, "b": 4}, {"a": 2, "b": 5}, {"a": 3, "b": 6}])
>>> df_b = pd.DataFrame([{"c": 2, ...
0
votes
1answer
100 views
create numpy NAN from pandas DataFrame
Saw the following example to illustrate how to create NAN through DataFrame.
import pandas as pd
import numpy as np
import math
import copy
import QSTK.qstkutil.qsdateutil as du
import datetime as dt
...
0
votes
1answer
53 views
Does np.array's astype prevent future edits in DataFrames?
I can change the first entry of the DataFrame initially:
In [6]: df = pd.DataFrame(np.random.rand(5,2))
In [7]: df
Out[7]:
0 1
0 0.514592 0.459589
1 0.329704 0.409099
2 ...
2
votes
1answer
125 views
Efficient matching of two arrays (how to use KDTree)
I have two 2d arrays, obs1 and obs2. They represent two independent measurement series, and both have dim0 = 2, and slightly different dim1, say obs1.shape = (2, 250000), and obs2.shape = (2, 250050). ...
0
votes
0answers
109 views
pandas dataframe to excel with win32 : numpy datatype error
I am trying to export a pandas dataframe to excel using win32.
The export seems to work only when the dataframe does not include numpy datatypes.
How can I convert numpy datatypes to their COM ...
1
vote
3answers
94 views
Count occurences of a row with pandas in python
I have a pandas data frame with thousands of rows and 4 columns. i.e.:
A B C D
1 1 2 0
3 3 2 1
3 1 1 0
....
Is there any way to count how many times a certain row occurs? For example how many ...
0
votes
1answer
64 views
Cannot install Pandas on MacOS [closed]
I removed all the numpy from my system
I then did a fresh pip install of numpy and an upgrade to be sure
Then I did a pip install of pandas
When I go to my repl, I can't import the pandas because ...
1
vote
2answers
134 views
pandas dataframe groupby a number of rows
If you have a pandas DataFrame({'a':[1,2,3,4,5,6,7,8,9]}) is there a simple way to group it into groups of 3 or any number?
I understand this can be done by adding an extra column that contains ...
3
votes
1answer
189 views
finding nearest items across two lists/arrays in Python
I have two numpy arrays x and y containing float values. For each value in x, I want to find the closest element in y, without reusing elements from y. The output should be a 1-1 mapping of indices of ...
1
vote
1answer
74 views
How to substract 2 columns of unaligned data with Python/Pandas?
I have two DataFrames
df1=
x y1
0 0 0
1 1 1
2 2 2
3 4 3
df2=
x y2
0 0.0 0
1 0.5 1
2 1.5 2
3 3.0 3
4 4.0 4
I need to calculate y2-y1 (for the same x value)
...
0
votes
1answer
68 views
Strategies for handling nominal values with numerical attributes
I'm using a data set that consists of mostly nominal values from SFDC (e.g. EE Names, Title, Role, Lead Source, Account Name, etc.) and am trying to correlate the features to a boolean class of ...
0
votes
0answers
99 views
pandas dataframe to matrix dtype errors
I find that the same set of commands work differently in two cases. Can some one point to why the second case extracts integers whereas the first does not. I want to replicate behavior of case I.
...
2
votes
2answers
65 views
Is there a pythonic way to get the beginning and end indexes of clusters of identical values in an iterable? [duplicate]
The following question can easily be solved with a loop, but I suspect that there may be a more pythonic way of acheiving this.
In essence, I have an iterable of booleans that tend to be clustered ...


