« first day (703 days earlier)      last day (244 days later) » 

5:09 AM
Is it just me, or does this make no sense whatsoever stackoverflow.com/questions/12485155
 
 
1 hour later…
6:14 AM
@mnel doesn't make sense to me too
voted to close
I just got rebuked by the intel fortran compiler :)
A do-variable within a DO body shall not appear in a variable definition context.
divine terminology :)
 
 
2 hours later…
8:00 AM
@PaulHiemstra I did a bit of googling for 'PC six pack' and now I have a set of abs to rival any muscle man.
 
@Spacedman a very vague question indeed
 
Also, I discovered possibly what the questioner was on about and asked for clarification.
But I fear my time is wasted improving their question for them
 
:)
-2
Q: RScript: how to get the plots saved into multiple files (say png) rather than saved into the Rplots.pdf?

uvts_cvsI use RScript in Windows and by default it saves the plots into the pdf file Rplots.pdf, one plot per page. I would like to get each plot saved into an image file like a .png, is it possible?

the OP was a little touchy about the downvotes he got
not from me actually
 
@Spacedman he probably thinks we are clairvoyant
 
8:05 AM
Its not a programming question in any way shape or form, and would be best directed to the BigQuery team, whoever they are, but then the BigQuery tag has a google icon and seems to be the support channel...
 
@Spacedman But "what are your plans" is about as open ended a Q as is possible so either Not Constructive or Not a Question would be appropriate
 
voted to close
 
yeah, and now i see similar vague BQ questions have been closed in the past. VtC
 
BigQuery seems to attract vague questions :)
 
But the bigquery devs ask for questions on SO.
I had a look at their website before voting to close (was almost too late)
Other Qs include "will bigquery be supported in the long haul?"
 
8:09 AM
@BenBarnes i just commented on your comment...
-1
Q: BigQuery, SLAs and support

Juan CerveraI am in the process of evaluating whether BigQuery could be good choice for some data processing we want to run periodically. I do appreciate that BigQuery is still under heavy development and that improvements and fixes are likely to happen pretty often. I woud like to know what would be the ...

got mod-zapped for offtopicality
 
OK, sounds good. One more close vote coming up.
 
Personally I think SO are fighting a losing battle on quality - the vision of SO being a resource where every question is a useful snippet for any programmer is way gone
time to get pedalling...
 
8:31 AM
Left a comment on the "BQ, SLAs and support" answer asking if the dev team could clarify their support offerings a bit. I think that's a more direct path than down voting/closing questions from unsuspecting users who are just following the devs' advice.
 
8:51 AM
I fear a "Google pay to sponsor that tag so we can do the hell what we like with it" response...
 
9:03 AM
Is this no longer active, since he or she found an error? stackoverflow.com/questions/12524696/…
 
@RomanLuštrik close as too localized and once closed, those of us who can, vote to delete.
 
9:18 AM
I'm tempted to point out that you can call R from Java. :) stackoverflow.com/questions/10852182/shapiro-wilks-in-java
 
 
1 hour later…
10:34 AM
I'm surprised no references to R manuals in this Q: stackoverflow.com/questions/12513866/…
This Q has lost all of its steam. Maybe we can somehow close it and delete it? stackoverflow.com/questions/8985899/…
 
 
5 hours later…
3:14 PM
Are any of you familiar with Lotus Notes? What's the modern equivalent / replacement product for that?
 
hard to say really...
"Lotus Notes is a multi-user client-server cross-platform application runtime environment,"
its used for the applications it can support, and that you can build on top of it
our central IT people built an entire virtual learning environment on it, until it got kicked for Moodle (yay open source)
 
Yes, that's my feeling too, after browsing the web for five minutes.
It seems like M$ sharepoint does something a little similar, but I haven't used sharepoint.
Anyway, I have to get some work done.
 
sharepoint can do all sorts of things, comes packaged as a collaboration system (our central IT semi-support it)
it was also one of the candidates for our uni web CMS...
 
3:39 PM
we've had sharepoint for about a year now and don't think the roll out/implementation went that well
i gather there is a lot of overhead and maintenance around the structure of the system...every time i've asked for a feature/support/request it has been "we need to consult our sharepoint consultant..."
...then crickets
 
we have one guy who has a sort of part-time role in sharepoint admin.
its all very vgue
vague
I'm finally updating R to 2.15 purely because I hope the latest devtools will not cause me to scream so much...
time for a cup of tea while update.packages runs...
now how do i update my packages in my ~/R/ library...
mv 2.14 2.15 & update.packages()
 
3:58 PM
Just say no to ~/R/$VERSION
I always enforce a sole library folder -- below /usr/local on *nix, and something like c:/opt/R-library/ on *doze.
No transition pains.
 
have to catch a train... have a good weekend...
 
@DirkEddelbuettel and for a non-root user?
 
Add to group, make /usr/local/lib/R/site-library/ group-writeable
Either staff, or admin, or adm, or ... create a new one
 
And on a multi-user machine where you dont want people stomping on each other's package installation?
 
@Spacedman Was never an issue. "Current CRAN versions" are a good default.
 
4:04 PM
We couldn't do that on our little cluster, it would get trashed.... personal libraries are a nice thing to have. Prob don't need $VERSION in the path though
aaand another bunch of g++ lines fly past with Rcpp:::Cxxflags in there!
 
If you do "LinkingTo: Rcpp" in DESCRIPTION you get R to insert the content for you
(but you still need Rcpp:::LdFlags() on the final linking step)
 
it was psgp I think
 
spatial schmatial
 
4:38 PM
okay shall i play with my new 2.15 or go home the long way on what might be the last daylight hometime friday for six months?
 
4:51 PM
donuts and cookies all day tell me I should do the 10 mile riverside route rather than the 4 mile direct.
 
do the longer ride!
 
I vote for the longer ride as well. Seems like an easy decision.
 
Yes, pedal Spacedman, pedal!
On another topic, there's an R call that lets you view a printed version of an R object's internal structure. IIRC, it looks like .Internal(foo(obj)), where foo is the bit I can't remember. Anyone know what I'm talking about/looking for?
 
Anyone care to speculate as to why using nchar on a factor is an error (rather than coercing it to character...)?
 
5:15 PM
@JoshO'Brien Maybe this:
9
Q: Reference for R wizards

IteratorBased on this answer, I learned of a special class of internal functions that can be accessed from R: a set of functions accessed via .Internal(specialFunction). If one queries ?.Internal this excerpt may be found: Only true R wizards should even consider using this function, and only R deve...

.Internal(inspect())
 
@joran -- Thanks! That's exactly it.
 
5:50 PM
Flood half way up my wheels for 50metres on the cycle path :)
 
@Spacedman Some wet feet then...? :)
 
lovely
 
6:20 PM
New ggplot2 docs created using staticdocs (devel version): docs.ggplot2.org/0.9.2.1
 
 
4 hours later…
9:59 PM
Nice @roman
 
10:14 PM
It was posted by Winston to the ggplot2 mailing list recently.
 

« first day (703 days earlier)      last day (244 days later) »