Not sure what you mean by 'row of vectors', and 'break up each row'. On Thu, Jun 30, 2011 at 3:20 PM, octopusgrabbus <[email protected]>wrote:
> If I have rows of vectors, such as the return from clojure-csv\parse- > csv > > ["a" 1 "b" 2 "c" 3 "d" 4] > ["e" 5 "f" 6 "g" 7 "h" 8] > > How can I break up each row? > > I've tried doseq in the let statement, but get an error. > > > On Jun 30, 2:27 pm, octopusgrabbus <[email protected]> wrote: > > Thanks. That did it. > > > > On Jun 30, 1:22 pm, Mark Rathwell <[email protected]> wrote: > > > > > > > > > > > > > > > > > One way would be: > > > > > (defn map-func > > > "test map function" > > > [] > > > (let [mtr-seq (vector "a" 1 "b" 2 "c" 3 "d" 4) > > > read-map (apply hash-map mtr-seq) > > > (println read-map))) > > > > > On Thu, Jun 30, 2011 at 1:09 PM, octopusgrabbus < > [email protected]>wrote: > > > > > > Given this function > > > > > > (defn map-func > > > > "test map function" > > > > [] > > > > (let [mtr-seq (vector "a" 1 "b" 2 "c" 3 "d" 4) > > > > read-map (<how to load key and value from mtr-seq>) > > > > (println read-map))) > > > > > > I want to load read-map with the keys and values from mtr-seq. > > > > > > Eventually, this data is going to be from the return from parse-csv > > > > (clojure-csv), but I seem to be making more progress using simpler > > > > examples. > > > > > > The "a", "b", and so on represent a character string premise id, and > > > > the 1, 2, and so on represent a meter read. > > > > > > My goal is to create a map, and then pass that around in other > > > > functions. > > > > > > Thanks. > > > > cmn > > > > > > -- > > > > You received this message because you are subscribed to the Google > > > > Groups "Clojure" group. > > > > To post to this group, send email to [email protected] > > > > Note that posts from new members are moderated - please be patient > with > > > > your first post. > > > > To unsubscribe from this group, send email to > > > > [email protected] > > > > For more options, visit this group at > > > >http://groups.google.com/group/clojure?hl=en > > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email to [email protected] > Note that posts from new members are moderated - please be patient with > your first post. > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/clojure?hl=en > -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
