The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
35 views

How to parse object during asynchronously processing function?

What should I do in case when I want to call seqEach on two_objects: Seq() .seq(function() { pivotal.getProjects(this); }) .flatten() .seqEach(function(data) { var ...
0
votes
1answer
26 views

How to pass into Seq reponse of function?

I want to pass into Seq([644511,340755]) an response from async function getProjects. So I tried ... var ids = pivotal.getProjects(function (err, data) { var ids = data.project.map(function(x) { ...
4
votes
2answers
118 views

An elegant way of creating a Scala sequence that comprises lagged tuples

I want to create a Scala sequence comprising tuples. The input is a text file like this: A B C D E I'm looking for an elegant way to construct "lagged" tuples like this: (A, B), (B, C), (C, D), ...
1
vote
1answer
107 views

F# - GroupBy and apply function to each property inside second tuple item

I have a an F# list of classes for which I am using properties to access data (i'm using a library developed in C#). I would like to group by one property then apply a separate function to each ...
1
vote
5answers
142 views

F# how to invoke the function in Seq.whatever without “printf”?

I'm new to f# and I tried to write a program supposed to go through all files in a given dir and for each file of type ".txt" to add an id number + "DONE" to the file. my program: //const: ...
5
votes
2answers
176 views

F#, char seq -> strings

A quick question that may be more of a rant (but I hope to be enlightened instead). In F# a string is compatible with Seq such that "abcd" |> Seq.map f will work on a string. This is a brilliant ...
0
votes
1answer
21 views

I was wondering if somebody could tell me how to configure the notification alerts on a job properties.

. Basically I want to receive an email when a job is completed or is failed.???
2
votes
1answer
87 views

Issue using seq() to generate time series in R

I want to create a time series from a start date&time (t1) to a finish date&time (t2) by 10 minute intervals. the code below works fine for all other t2 times bar 23:50:00 library(chron) t1 ...
-5
votes
4answers
268 views

Creating a sequence starting with 0

I like to use the seq() command in R to create a sequence starting at zero. but when I type e.g. seq(0:14) I get the following output: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 What am I doing wrong?
0
votes
0answers
132 views

Big difference in performance between two uses of Seq.iter

The following is an MWE that illustrates my problem: let f (n : int) : unit = {1 .. n} |> Seq.iter (fun s -> // Do something memory intensive, without retaining anything ...
9
votes
1answer
134 views

Is `evaluate` safe compared to `seq`?

As shown in this answer, seq combined with undefined does very strange things when it comes to equational reasoning, for example it can make any monad fail. Another example is in this question. ...
8
votes
2answers
154 views

seq vs seq_along. When will using seq cause unintended results?

What is (are?) good examples of when seq_along will work, but seq will produce unintended results. From the documentation of ?seq we have: Note that it dispatches on the class of the first ...
4
votes
1answer
100 views

Clone seq in Clojure

How can I lazily "clone" a seq in Clojure. Something along the lines of (let [[s1 s2] (clone-seq s)] ...) such that s1 and s2 are independent seqs backed by s?
0
votes
1answer
102 views

msysgit: Git bash misses the `seq` command. It there an alternative shell scripts?

I use seq a lot in my simulation shell scripts. The Git bash does not provide it, thus I am looking for an alternative. Is there an alternative to seq that is part of the commands supported by the ...
2
votes
2answers
392 views

R how to list every other element?

Let's say I had a vector remove<- c(17,18,19,20,24,25,30,31,44,45). How do I obtain every other value in the vector? Like so: 17,19,24,30,44 I'm trying to use the seq function: seq(remove, 2) but ...
1
vote
0answers
128 views

Applying seq to improve execution time in Haskell

I have the following: data Node = Node { position::Int , zombies::Float , connections::[Int] } moveZombie :: [Node] -> Node -> Node ...
2
votes
1answer
132 views

convert List[Tuple2[A,B]] to Tuple2[Seq[A],Seq[B]]

Stuck here, trying to convert a List of case class tuples to a tuple of sequences and multi-assign the result. val items = repo.foo.list // gives me a List[(A,B)] I can pull off multi-assignment ...
1
vote
1answer
159 views

Simulating range(L,N) in erlang

Early in the morning playing with Erlang I got a curious result: -module(bucle01). -compile(export_all). for(N) when N >=0 -> lists:seq(1,N). for(L,N) when L ...
0
votes
3answers
100 views

generate 5 minutes interval

I need to write a shell script that will create a list of 5 minutes interval times. 00-00 00-05 00-10 00-15 ... ... 23-50 23-55 Here are the commands I have started with. # date Fri Sep 21 ...
0
votes
1answer
33 views

numerical arrays sequenced by seconds

I have a sequence from 1 to 2 which actually represents 1 to 2 minutes. I would like the increments to be in seconds. I don't think the 'chron' package will answer my problem here, because I want to ...
1
vote
2answers
143 views

Simpler Seq.unfold in F#

Is there a simpler Seq.unfold version that just takes the previous element as the state? I know you can easily adapt Seq.unfold to do that, but the result is not very readable.
1
vote
2answers
72 views

R rep seq where number of rows is not multiple of seq length

I have a data frame with 1666 rows. I would like to add a column with a repeating sequence of 1:5 to use with cut() to do cross validation. It would look like this: Y x1 x2 Id1 ...
1
vote
3answers
96 views

Mysterious behaviour of seq and == operator. A precision issue?

I've come across a somehow weird (or just not expected?) behaviour of the function seq. When creating a simple sequence some values cannot be matched correctly with the == operator. See this minimal ...
9
votes
2answers
163 views

Is Array[String] not a subclass of Seq[String] in Scala?

I wrote a method that accepts objects of all subclasses of Seq[String]. Unfortunately it won't accept an object of the type Array[String]. Is Array[String] not a subclass of Seq[String]? scala> ...
2
votes
2answers
174 views

Unexpected type compilation issue when using pipe operations in F#

I am trying to parse a directory of XML files and then select the value of particular attribute if a given node is present. Am not able to understand the reason for the compilation error that the ...
5
votes
3answers
152 views

Interop from clojure a with non-standard iterative java API

I am working in clojure with a java class which provides a retrieval API for a domain specific binary file holding a series of records. The java class is initialized with a file and then provides a ...
3
votes
1answer
111 views

What are the postfix numbers on F# core methods?

I was looking at the source code for the Append function in the SeqModule and noticed that there are a ton of duplicate methods with @xxx postfixed to them. Does anyone know why these are here?
3
votes
2answers
160 views

Are Haskell thunks mutable concerning evaluation?

While looking into parallel programming, and subsequently evaluation strategies, the question whether thunks are mutable came up. To give an example, let's say I have the following code: foo = 1 + 2 ...
5
votes
1answer
262 views

Haskell: A stricter fold' with deepseq

The page Foldr Foldl Foldl' discusses foldl', and defines it like: foldl' f z [] = z foldl' f z (x:xs) = let z' = z `f` x in seq z' $ foldl' f z' xs This is done to avoid ...
5
votes
2answers
112 views

Create seq of maps from two or more seqs

I'm new to Clojure and I was wondering if there's a way to create a sequence of maps from two or more sequences. Let's say you have: (def numbers '(1 2 3)) (def letters '("a" "b" "c")) (def shapes ...
13
votes
2answers
3k views

scala: difference between a Seq and a List

I've seen in many examples that sometimes a Seq is being used, while other times is the List... Is there any difference, other than the former one being a Scala type and the List coming from Java?
0
votes
1answer
206 views

Print a multiplication table in R with minimal code

In R, what is the fastest way(shortest code) to print multiplication table? The functions seq rep and the bind functions help, but I'm looking for the shortest line(s) of code to do this. ...
1
vote
1answer
109 views

Scala convert Seq to k, v of sbt.Project.Setting[_]

Play 2.0's Build.sbt uses a pimped Project definition to do its magic; any additional settings you might need to add must be manually entered in k := v fashion. Works fine for the general case, but ...
3
votes
3answers
155 views

Filtering a Seq of Tuple3 using one element of each Tuple

I have a Seq of Tuple3 elements. I want a resulting collection (probably a Set) made up with the second element of each tuple. For example (a, b, c), (d, e, f), (g, h, i) ==> (b, e, h) Any ...
6
votes
2answers
340 views

F# PSeq.iter does not seem to be using all cores

I've been doing some computationally intensive work in F#. Functions like Array.Parallel.map which use the .Net Task Parallel Library have sped up my code exponentially for a really quite minimal ...
5
votes
2answers
130 views

`seq` on partially applied functions

Lets say I have the following: f :: a -> b -> c g :: b -> c g = f 10 Now lets say f is actually: f x y = f1 x + y Would: g `seq` ... actually evaluate f1 10, so later when running g ...
1
vote
2answers
235 views

F# equivalent of LINQ Single

Ok, so for most LINQ operations there is a F# equivalent. (Generally in the Seq module, since Seq= IEnumerable) I can't find the equiv of IEmumerable.Single, I prefer Single over First (which is ...
4
votes
4answers
295 views

How to zero-pad numeric variables in zsh (and maybe also bash?)

In zsh, when I have to create a bunch of files with zsh, I usually do something like: for x in $(seq 1 1000); do .....; done This works fine, it gives me files with names foo-1.txt .. foo-1000.txt. ...
10
votes
5answers
459 views

Time cost of Haskell `seq` operator

This FAQ says that The seq operator is seq :: a -> b -> b x seq y will evaluate x, enough to check that it is not bottom, then discard the result and evaluate y. This might not seem ...
8
votes
3answers
349 views

How do turn a java Iterator-like object into a clojure sequence

I'm using the Sesame library to run SPARQL queries over an in-memory triple store. I am using Clojure to achieve this. A query result is a custom Iterator-like [1] object, so the clojure seq does ...
1
vote
3answers
374 views

Bash Script Loop Out of Memory?

In bash I need to run a script that loops from i=1 to i=99999999 but it always run out of memory. Is there any workaround? or is there a max value for i? first=1 last=99999999 ...
1
vote
2answers
135 views

F#: Seq.forall weirdness?

Given let ra = ResizeArray<int> (): Seq.forall (fun i -> let q = i % 2 if 0 = q then ra.Add i true ) <| seq { 1..10 } If I do ...
2
votes
1answer
138 views

Adding an item to an immutable Seq

Say, I have a sequence of strings as an input and I want to get a new immutable Seq which consists of elements of the input and an item "c". Here are two methods that I've discovered to be working: ...
3
votes
4answers
236 views

Clojure seq as a substitute for Scala Option[T]

Scala offers a hierarchy of classes Option[T], Some[T] extends Option[T], and None extends Option[Nothing] that I have found useful for wrapping Java method calls that can return null, among other ...
3
votes
2answers
580 views

Convert Seq to ArrayBuffer

Is there any concise way to convert a Seq into ArrayBuffer in Scala?
7
votes
2answers
358 views

Inconsistency with Clojure's sequences?

Clojure: 1:13 user=> (first (conj '(1 2 3) 4)) 4 1:14 user=> (first (conj [1 2 3] 4)) 1 ; . . . 1:17 user=> (first (conj (seq [1 2 3]) 4)) 4 I understand what is going on, but should this ...
1
vote
5answers
393 views

F# lists with sequence operators

After having a look at these two threads: Does F# have an equivalent to Haskell's take? , Take N elements from sequence with N different indexes in F# , I've been wondering about the best way to ...
3
votes
2answers
282 views

Scala - Why can't infer List of Seq for a list containing Vector and List?

Trying the following in 2.8.1/2.9.0.1 REPL, the first gives an error. val l = List(Vector(1,2), List(3,4,5)) error: type mismatch; found : scala.collection.immutable.Vector[Int] required: ...
0
votes
2answers
747 views

F# Seq.Map string->string

all! What is wrong with this code? I cannot understand what I am doing wrong with Seq.Map. Here is the error message: The type 'unit' is not compatible with the type 'seq<'a>' let ...
2
votes
2answers
325 views

Monads: What's the difference between seq and >>=?

What's the difference? Does seq guarantee more flow conditions?

1 2