Tagged Questions

17
votes
4answers
2k views

Why Numpy instead of Python lists?

Is it worth my learning NumPy? I have approximately 100 financial markets series, and I am going to create a cube array of 100x100x100 = 1 million cells. I will be regressing (3-variable) each x with …
17
votes
3answers
3k views

How do you use the ellipsis slicing syntax in Python?

This came up in Hidden features of Python, but I can't seem good documentation or examples that explain how the feature works.
16
votes
18answers
1k views

What can be done in R that can’t be done with Python/Numpy/SciPy

I've been recently wondering about the over-proliferation of DSLs like R - and thinking whether this is good or bad. Specifically, I wonder what right has R as a stand-alone language and environment? …
7
votes
2answers
1k views

python.array versus numpy.array

If you are creating a 1d array in Python is there any benefit to using the NumPy package?
7
votes
8answers
2k views

Open source alternative to matlab’s fmincon function?

Does anyone know of an open-source alternative to Matlab's fmincon function for constrained linear optimization? I'm rewriting a matlab program to use Python / numpy / SciPy and this is the only …
6
votes
5answers
1k views

Using Python to replace MATLAB: how to import data?

I want to use some Python libraries to replace MATLAB. I'd like to know how could I import excel data in Python (for example using numpy) to use them. I don't know if Python is a credible alternative …
5
votes
4answers
563 views

Array division- translating from MATLAB to Python

I have this line of code in MATLAB, written by someone else: c=a.'/b I need to translate it into Python. a, b, and c are all arrays. The dimensions that I am currently using to test the code are: …
5
votes
3answers
330 views

Detect if a numpy array contains at least one non-numeric value?

I need to write a function which will detect if the input contains at least one value which is non-numeric. If a non-numeric value is found I will raise an error (because the calculation should only …
5
votes
3answers
608 views

What does the Python Ellipsis object do?

While idly surfing the namespace I noticed an odd looking object called "Ellipsis", it does not seem to be or do anything special, but it's a globally available builtin. After a search I found that …
5
votes
2answers
964 views

Is there a good NumPy clone for Jython?

I'm a relatively new convert to Python. I've written some code to grab/graph data from various sources to automate some weekly reports and forecasts. I've been intrigued by the Jython concept, and …
4
votes
7answers
372 views

gotchas where Numpy differs from straight python ?

Folks, is there a collection of gotchas where Numpy differs from python, points that have puzzled and cost time ? "The horror of that moment I shall never never forget !" "You will, though," …
4
votes
9answers
1k views

Python Numpy Very Large Matrices

Numpy is an extremely useful library, and from using it I've found that it's capable of handling matrices which are quite large (10000x10000) easily, but begins to struggle with anything much larger …
4
votes
3answers
424 views

Interpolation in SciPy: Finding X that produces Y

Is there a better way to find which X gives me the Y I am looking for in SciPy? I just began using SciPy and I am not too familiar with each function. import numpy as np import matplotlib.pyplot as …
4
votes
3answers
412 views

How to hash a large object (dataset) in Python?

I would like to calculate a hash of a Python class containing a dataset for Machine Learning. The hash is meant to be used for caching, so I was thinking of md5 or sha1. The problem is that most of …
4
votes
3answers
331 views

Why are 0d arrays in Numpy not considered scalar?

Surely a 0d array is scalar, but Numpy does not seem to think so... am I missing something or am I just misunderstanding the concept? >>> foo = numpy.array(1.11111111111, numpy.float64) …

1 2 3 4 5 11 next
15 30 50 per page