Viewing profile — wildanimal
wildanimal
HN member- Joined
- Sun, Jun 20, 2010, 5:36 AM UTC
- HN karma
- 93
- Public activity
- 26 items
- HN profile
- View on Hacker News ↗
About wildanimal
No profile information was provided.
Recent public activity
-
comment
Comment #4374047
But if you look at Emacs-as-IDE route taken by EDE/CEDET suite, it's a kludgy beast... (I don't know how large the EDE/CEDET user community is, but most people I know forsake it in…
-
comment
Comment #3817024
I thought the plan was to rebase in Guile Scheme?
-
comment
Comment #3816934
Can you get it through a host like sourceforge/github, or through a package manager like macports/homebrew? I can only find a zipped file on the web...
-
comment
Comment #3724430
The original statement could be interpreted in this way: the former operation 'returns a function' and in the latter, it 'bind[s] [...] arguments' - suggesting a form of destructiv…
-
comment
Comment #3717878
I wouldn't discourage them uniquivocally - for instance, 'subset' is an idiom often used in the context of data/relational tables. That matters a little bit (enough to pay a little…
-
comment
Comment #3343089
I couldn't tell from the first chapter, but are there a lot of equations? If so, would be a big plus for me.
-
comment
Comment #3235229
How is this better than attaching data to objects and operating on them with its methods? (Seriously, I would like to know). The syntax does not look all that different and with cl…
-
story
Ask HN: Can NumPy, SciPy, and Matplotlib keep up?
With the Python community looking forward to Python 3 and PyPy, NumPy+Scipy+Matplotlib seems to be be focused on making further developments in Python 2 (and for some time to come,…
-
comment
Comment #2936690
That sounds great -- I only recently learned of pandas (I normally don't use much of NumPy/SciPy), but I will keep an eye out on this.
-
comment
Comment #2934336
I entirely agree though my personal preference is for lattice over ggplot as it is faster and more flexible at the present time (the "limitations" of ggplot reflect the preference …
- story
- story
-
comment
Comment #2591294
can use virtualbox+windows. not ideal, but one way.
-
comment
Comment #2346186
Agreed -- the author of the post is talking about writing or debugging algorithms; coding is the stuff you need your computer for.
- comment
-
story
Ask HN Hackers: What's R's future?
The R community seems to be growing rapidly, with many favorable reviews of the language/system. For instance -- Forbes Magazine, Names You Need to Know in 2011: R Data Analysis So…
-
comment
Comment #1867336
When I tried to use easy_install with the EPD it tried to take me to their repository, for which we don't have appropriate permissions? So I sucked it up and installed some from .d…
-
comment
Comment #1867323
Agreed. I use Python for heavy shell-scripting and text-processing (though R surprisingly does have respectable facilities for all but the most overwhelming of these tasks) and R f…
-
comment
Comment #1661732
I see - yes, most of the masters whose .emacs.d file I've had the privilege to look have been from the old guard.
-
comment
Comment #1661632
Sorry, meant "from my limited observation it seems that everyone"... but what you suggest makes sense.
-
comment
Comment #1661591
I wonder why everyone writes out the function invocations to add each directory they're adding, rather than doing something like (labels ((add-path (p) (add-to-list 'load-path (pat…
-
comment
Comment #1661218
When do you decide to use some directory like ~/emacs or ~/elisp or whatever instead of your ~/.emacs.d/ directory for your packages? A lot of emacs sites say to use ~/.emacs.d, bu…
-
comment
Comment #1460218
Google apparently runs R on desktops ( http://dataspora.com/blog/predictive-analytics-using-r/ ) and ports it to Python or C++ once their ideas are tested (for production code). Ha…
-
comment
Comment #1460217
You can check out the lattice, ggplot2, scatterplot3d and rgl libraries to see how R handles multivariate data - R is especially well suited for analyzing panel (longitudinal) data…
-
comment
Comment #1460211
S-PLUS objects reside on the hard drive whereas R's are stored entirely in memory. So R is faster for smaller computations but runs against limitations when the data sets are large…