Tagged Questions
The reduce tag has no wiki summary.
14
votes
2answers
2k views
Where is the “Fold” LINQ Extension Method?
I found in MSDN's Linq samples a neat method called Fold() that I want to use. Their example:
double[] doubles = { 1.7, 2.3, 1.9, 4.1, 2.9 };
double product =
doubles.Fold((runningProduct, ...
13
votes
2answers
728 views
Implement fibonacci in Clojure using map/reduce
Is it possible to implement the fibonacci series in Clojure efficiently using reduce? What would the "accumulator" contain?
I imagine that it will have to be lazy. It's obvious how to do it using ...
13
votes
5answers
7k views
python histogram one-liner
there are many ways, how to code histogram in Python.
by histogram, i mean function, counting objects in an interable, resulting in the count table (i.e. dict). e.g.:
>>> L = 'abracadabra'
...
11
votes
4answers
1k views
Does OCaml have general map()/reduce() functions?
In Python map() works on any data that follows the sequence protocol. It does The Right Thing^TM whether I feed it a string or a list or even a tuple.
Can't I have my cake in OCaml too? Do I really ...
10
votes
3answers
78 views
Can a regular expression be tested to see if it reduces to .*
I'm developing an application where users enter a regular expression as a filter criterion, however I do not want people to be (easily) able to enter .* (i.e. match anything). The problem is, if I ...
9
votes
7answers
135 views
How to join links in Python to get a cycle?
I have a list of links and want to know the joined path/cycle.
My links look like this:
[[0, 3], [1, 0], [3, 1]]
And I want the answer to be a cycle like that (or any other matching cycle):
...
8
votes
3answers
267 views
Compose example in Paul Graham's ANSI Common Lisp
Can anybody explain an example in Paul Graham's ANSI Common Lisp page 110?
The example try to explain the use &rest and lambda to create functional programming facilities. One of them is a ...
8
votes
2answers
183 views
Do list comprehensions in Python reduce in a memory efficient manner?
I am a beginner at Python, and this is my first post, so don't be too harsh :). I've been playing around with Python lately and was wondering if something like
max([x for x in range(25)])
would ...
8
votes
2answers
509 views
“unfold” for common lisp?
I learned quite a bit of scheme from SICP but am more interested in common lisp now. I know common lisp's fold is reduce, with special arguments for left or right folding, but what is the equivalent ...
8
votes
5answers
841 views
How do you or together all values of a list in Python?
How do you or together all values of a list in Python? I'm thinking something like:
or([True, True, False])
or if it was possible:
reduce(or, [True, True, False])
7
votes
6answers
638 views
Parallelizing the “Reduce” in “MapReduce”
I understand how Map is easily parallelizable - each computer/CPU can just operate on a small portion of the array.
Is Reduce/foldl parallelizable? It seems like each computation depends on the ...
6
votes
3answers
160 views
How does one reduce a list of boolean values in Common Lisp?
Given a list of values, I want to reduce the list to T if all the elements are not NIL, NIL if not. This gives me an error:
(apply #'and (get-some-list))
As does this:
(reduce #'and ...
6
votes
4answers
230 views
Need help figuring out scala compiler errors
I have been working on a project in scala, but I am getting some error messages that I don't quite understand. The classes that I am working with are relatively simple.
For example:
abstract class ...
6
votes
5answers
2k views
Mapping values from two array in Ruby
I'm wondering if there's a way to do what I can do below with Python, in Ruby:
sum = reduce(lambda x, y: x + y, map(lambda x, y: x * y, weights, data))
I have two arrays of equal sizes with the ...
5
votes
2answers
133 views
Mathematica: finding the conditions for the real part of a complex number to be positive, unexpected/redundant output of Reduce
I need to find the conditions for the real part of a complex number to be negative. I thought Reduce would be perfect for this, but it gives redundant output (even after simplification). For example: ...
5
votes
5answers
170 views
reduce duplicate in a javascript object
I've got an object like:
{
a : 'foo',
b : 'bar',
c : 'foo',
d : 'baz',
e : 'bar'
}
I want to reduce the duplicates like:
{
ac : 'foo',
be : 'bar',
d : 'baz'
}
...
5
votes
4answers
119 views
Algorithm Minimize playlist without altering the playout
Im looking for an algorithm to reduce a list (playlist) of ordered but not unique items.
Searched for set theory but havent found anything suitable yet
Examples
[a, b, b, c] -> [a, b, b, c] ...
5
votes
4answers
308 views
Clojure: finding sequential items from a sequence
In a Clojure program, I have a sequence of numbers:
(2 3 4 6 8 1)
I want to find the longest sub-sequence where the items are sequential:
(2 3 4)
I am assuming that it will involve (take-while ...
4
votes
8answers
153 views
Python: reduce on tuple of tuples
I am trying to compute in Python the length of the path from a point A to a point B going through a list of intermediary points. I know how to do it but I do want to use the reduce Built-in function.
...
4
votes
2answers
76 views
Matrix to CSV in Scala
Writing an MxN matrix ( M rows, N columns ) to a CSV file:
My first attempt, using map, works, but creates N references to the stringbuffer. It also writes an unnecessary comma at the end of each ...
4
votes
2answers
285 views
Scala - reduce/foldLeft
I have a nested map m which is like:
m = Map("email" -> "a@b.com", "background" -> Map("language" -> "english"))
I have an array arr = Array("background","language")
How do I ...
4
votes
1answer
97 views
“reduce” function in python not work on “namedtuple”?
I have a log file that is formatted in the following way:
datetimestring \t username \t transactionName \r\n
I am attempting to run some stats over this dataset. I have the following code:
import ...
4
votes
1answer
64 views
How to keep the audio size, reduced, while recording in android?
My requirement is to keep the size of audio as small as i can. Also, after getting the recorded stream, i can accomplish this task by zencoder type APIs but I am interested to do this thing while ...
4
votes
2answers
113 views
Does R has something equivalent to reduce() in Python?
That is : "Apply function of two arguments cumulatively to the items of sequence, from left to right, so as to reduce the sequence to a single value. "
4
votes
1answer
75 views
elementwise binding in R
I want a function f such that
(outer(X, Y, f))[i, j] is a side-by-side concatenation of the i-th element of X and the j-th element of Y, something like c(X[i], Y[j]), or having a similar structure.
...
4
votes
1answer
633 views
couchdb map reduce, how to output less rows
Lets say you have 2 doc types.... customers and orders. Customer doc contains basic info... name, address etc. and then orders contain all the order info each time a customer orders something. When ...
4
votes
6answers
170 views
Can this be written as a python reduce function?
Can you make this more pythonic by using the map and/or reduce functions? it just sums the products of every consecutive pair of numbers.
topo = (14,10,6,7,23,6)
result = 0
for i in ...
4
votes
6answers
436 views
Practical use of fold/reduce in functional languages
Fold (aka reduce) is considered a very important higher order function. Map can be expressed in terms of fold (see here). But it sounds more academical than practical to me. A typical use could be to ...
4
votes
2answers
119 views
MapReduce for counting parameter values
I have document like this:
{
"_id": ObjectId("4d17c7963ffcf60c1100002f"),
"title": "Text",
"params": {
"brand": "BMW",
"model": "i3"
}
}
{
"_id": ...
4
votes
3answers
162 views
Does this have function have to use reduce() or is there a more pythonic way?
If I have a value, and a list of additional terms I want multiplied to the value:
n = 10
terms = [1,2,3,4]
Is it possible to use a list comprehension to do something like this:
n *= (term for term ...
4
votes
2answers
826 views
Efficient reduction of 2D array in CUDA?
In the CUDA SDK, there is example code and presentation slides for an efficient one-dimensional reduction. I have also seen several papers on and implementations of one-dimensional reductions and ...
4
votes
5answers
242 views
Pythonic solution to my reduce getattr problem
I used to use reduce and getattr functions for calling attributes in a chain way like "thisattr.thatattr.blaattar"
IE:
reduce(getattr, 'xattr.yattr.zattr'.split('.'), myobject)
Works perfectly ...
4
votes
3answers
283 views
Composing monad actions with folds
Let's take a function of type (Monad m) => a -> m a. For example:
ghci> let f x = Just (x+1)
I'd like to be able to apply it any number of times. The first thing I tried was
ghci> let ...
4
votes
2answers
563 views
Availiable reducers in Elastic MapReduce
I hope I'm asking this in the right way. I'm learning my way around Elastic MapReduce and I've seen numerous references to the "Aggregate" reducer that can be used with "Streaming" job flows.
In ...
3
votes
1answer
99 views
Reduce results in an error for a polynomial with real (non-integer) coefficients
In Mathematica, I tried to check some condition for a polynomial, whose parameters change in a range. My calculations are 5th order but I made a simple one to show my needs.
When I create a ...
3
votes
1answer
80 views
Python to c# reduce function understanding
I am struggling to understand the 'reduce' call written below in python.
I have found several sources, both here and elsewhere, that state what the function does, and that there's an equivalent ...
3
votes
3answers
120 views
JavaScript reduce can't handle Math functions?
I'm trying an obvious task:
var maxVal = [ 1, 2, 3, 4, 5 ].reduce( Math.max, 0 );
and get:
NaN
as the result. To make it work I have to make an anonymous function this way:
var maxVal = [ 1, 2, ...
3
votes
3answers
215 views
Map reduce problem in python
I am currently struggling with an assignment. The solution would input a txt file and run through counting the number of palindromes and their frequency. I need to use Map reduce to create to do so
...
3
votes
1answer
84 views
IE/JS: reduce on an object
my javascript Application works on firefox and chrome very well. But it seams to be broken on Internet Explorer (IE 8).
I did not get an error Message on the console-log. By debugging the code I ...
3
votes
2answers
162 views
How to generalize outer to n dimensions?
The standard R expression outer(X, Y, f) evaluates to a matrix whose (i, j)-th entry has the value f(X[i], Y[j]).
I would like to implement the function multi.outer, an n-dimensional generalization ...
3
votes
1answer
63 views
rewrite rules that converts tokens to integer parameters
After much wrestling with the idea of ranking records, I finally settled on numeric based scores for my documents, which I emit to have them sorted based on these scores.
Now these numbers have ...
3
votes
1answer
126 views
null key in from map/reduce result in couchdb
For some reason I'm only getting a null key from map/reduce result in couchdb on mac
Result:
{"rows":[
{"key":null,"value":2224}
]}
Im using couchapp v8.1 and couchdb v1.0.2
My map function is:
...
3
votes
2answers
277 views
how to “merge” view collation into useful output in couchdb
When doing a 'join' on couchdb, you can use view collation to group the records together. For example, having 2 doc types.... customers and orders. So that you can return customer, then all the ...
3
votes
1answer
143 views
3
votes
4answers
507 views
Filtering SQL query by row and by date range
I have a time indexed Oracle DB which I'm trying to query by date range. I also want to do data reduction in the query so I don't get overwhelmed with too much data.
The stand alone date query (2352 ...
3
votes
2answers
318 views
What's the easiest way to explain What is Hadoop and Map/Reduce?
It's very easy to explain NoSQL from high level view - it is basically "key-value" storage. Of course with thousand minor and important things, but in general it's just key value storage.
What's the ...
3
votes
3answers
2k views
Is there a type-safe Java implementation of 'reduce'?
I often need to run reduce (also called foldl / foldr, depending on your contexts) in java to aggregate elements of an Itterable.
Reduce takes a collection/iterable/etc, a function of two ...
2
votes
2answers
66 views
Getting the index of the minimum number in a vector in clojure
I have used the following expression to retrieve the index of the smallest number in a vector. However, I would like to avoid the use of indexOf (for efficiency reasons and maybe numeric precision ...
2
votes
1answer
116 views
Python: name 'reduce' is not defined
I'm using Python 3.2. Tried this:
xor = lambda x,y: (x+y)%2
l = reduce(xor, [1,2,3,4])
And got the following error:
l = reduce(xor, [1,2,3,4])
NameError: name 'reduce' is not defined
Tried ...
2
votes
1answer
58 views
Why does the type parameter of reduceLeft contain a lower bound?
The signature of reduceLeft on some Seq[A] is
def reduceLeft [B >: A] (f: (B, A) => B): B
The type of A is known, but the lower bound >: tells us that B can be any supertype of A.
Why ...