Hi all, I have written a little library inspired by Spyscope (which I use a lot) to provide tools for interactively inspecting and visualizing data.
data-scope - https://github.com/jsofra/data-scope Like Spyscope, data-scope uses (abuses?) reader tags to provide a convenient mechanism for tagging data anywhere to visualize it. Currently is supports readers tags for visualizing data as both charts, graphs, tables and trees. There is also support for pretty printing data. I like to use it by including it in my ~/.lein/profiles.clj, this way it is available anywhere: :dependencies [[jsofra/data-scope "0.1.0"]] :injections [(require 'data-scope.charts) (require 'data-scope.graphs)] or ~/.boot/profile.boot: (set-env! :dependencies #(conj % '[jsofra/data-scope "0.1.0"])) (require 'data-scope.charts) (require 'data-scope.graphs) (boot.core/load-data-readers!) Contributions and suggestions are welcome! Cheers, James Sofra (@sofra) -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com 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 unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.