Displaying 20 results from an estimated 49 matches for "x3203".
Did you mean:
x203
2009 Feb 13
2
Identifying graphics files produced by R
...stical
graphics on the web, and if there's a way to identify graph files I
see as coming from R it would help a lot.
Thanks,
# David Smith
--
David M Smith <david at revolution-computing.com>
Director of Community, REvolution Computing www.revolution-computing.com
Tel: +1 (206) 577-4778 x3203 (Seattle, USA)
2009 Feb 16
0
Summary: Identifying graphics files produced by R
...'s a way to identify graph files I
> see as coming from R it would help a lot.
>
> Thanks,
> # David Smith
>
> --
> David M Smith <david@revolution-computing.com>
> Director of Community, REvolution Computing www.revolution-computing.com
> Tel: +1 (206) 577-4778 x3203 (Seattle, USA)
>
--
David M Smith <david@revolution-computing.com>
Director of Community, REvolution Computing www.revolution-computing.com
Tel: +1 (206) 577-4778 x3203 (Seattle, USA)
[[alternative HTML version deleted]]
2009 Jul 01
2
Revolutions blog: June roundup
...s to everyone who provided comments and tips and
please keep them coming to david at revolution-computing.com .
Regards to all,
# David Smith
--
David M Smith <david at revolution-computing.com>
Director of Community, REvolution Computing www.revolution-computing.com
Tel: +1 (206) 577-4778 x3203 (San Francisco, USA)
Check out our upcoming events schedule at www.revolution-computing.com/events
2009 May 01
1
Last month on the Revolutions blog
...dar.html
Comments and suggestions about the?blog?are welcome! (My email is
david at revolution-computing.com?).
Regards to all,
# David Smith
--
David M Smith <david at revolution-computing.com>
Director of Community, REvolution Computing www.revolution-computing.com
Tel: +1 (206) 577-4778 x3203 (San Francisco, USA)
Check out our upcoming events schedule at www.revolution-computing.com/events
2009 Oct 21
5
News on R "s largest corporate partner REVolution Computing and SPSS CEO:
Start the REvolution without me...
http://danesecooper.blogs.com/divablog/2009/10/start-the-revolution-without-me.html
*From Danese Cooper's Blog*
Some of you may have become aware of REvolution
Computing<http://revolution-computing.com/>,
a commercial open source company organized around the R
Language<http://www.r-project.org/>,
when I joined in March
2009 Apr 01
0
Pre-Sales, Consulting and Development Engineers at REvolution Computing
...o apply.
More information and details on how to apply can be found at:
http://www.revolution-computing.com/aboutus/careers.php
# David Smith
--
David M Smith <david at revolution-computing.com>
Director of Community, REvolution Computing www.revolution-computing.com
Tel: +1 (206) 577-4778 x3203 (San Francisco, USA)
Check out our upcoming events schedule at www.revolution-computing.com/events
2009 Jul 01
0
Parallel programming packages iterators, foreach and doMC released
...res/processors on the
local workstation to run iterations in parallel.
More information at blog.revolution-computing.com:
http://bit.ly/tygLz
--
David M Smith <david at revolution-computing.com>
Director of Community, REvolution Computing www.revolution-computing.com
Tel: +1 (206) 577-4778 x3203 (San Francisco, USA)
Check out our upcoming events schedule at www.revolution-computing.com/events
_______________________________________________
R-packages mailing list
R-packages at r-project.org
https://stat.ethz.ch/mailman/listinfo/r-packages
2009 Jul 01
0
Parallel programming packages iterators, foreach and doMC released
...res/processors on the
local workstation to run iterations in parallel.
More information at blog.revolution-computing.com:
http://bit.ly/tygLz
--
David M Smith <david at revolution-computing.com>
Director of Community, REvolution Computing www.revolution-computing.com
Tel: +1 (206) 577-4778 x3203 (San Francisco, USA)
Check out our upcoming events schedule at www.revolution-computing.com/events
_______________________________________________
R-packages mailing list
R-packages at r-project.org
https://stat.ethz.ch/mailman/listinfo/r-packages
2009 Oct 04
1
multicore - no parallel
Hi everyone,
Thanks for the help in advance. I just want to know if there is absolutely
any way of using multicore if my loop can't run in parallel as each
iteration depends on the previous iteration. I have Windows R 2.9.2 and
REvolution R Enterprise 2.0 for Windows 64 bit. I also have if necessary R
on Ubuntu. 8gb of ram and a core 2 duo processor but I could use a quad core
as well.
Many
2009 Feb 06
2
does R plus 3.3 need vista ?
Hi all - has anyone ot and experienced problems with R+.
Have downloaded the trail and it will not work -does it need vista (like it
says on the box!)
Thanks
glenn
[[alternative HTML version deleted]]
2009 Mar 11
0
Two new R courses in April (US)
...with simple
examples that can be used as starting points for more sophisticated
work. (Ideal for attendees of R/Finance 2009.)
# David Smith
--
David M Smith <david at revolution-computing.com>
Director of Community, REvolution Computing www.revolution-computing.com
Tel: +1 (206) 577-4778 x3203 (Seattle, USA)
2009 Mar 31
0
Last month on the Revolutions blog
...dar.html
Comments and suggestions about the blog are welcome! (My email is
david at revolution-computing.com ).
Regards to all,
# David Smith
--
David M Smith <david at revolution-computing.com>
Director of Community, REvolution Computing www.revolution-computing.com
Tel: +1 (206) 577-4778 x3203 (San Francisco, USA)
Check out our upcoming events schedule at www.revolution-computing.com/events
2009 Jul 30
3
R User Group listings
There are now several R geographic user groups, and a few have mailing
lists on the R mailing list system. Thanks to Martin M, there's also a
pointer to a page I'm maintaining to list/describe the groups. The page
is at
http://macnash.telfer.uottawa.ca/RUG.html
Contact me if you have a listing. I'm prepared to wikify it if there is
sufficient interest.
John Nash
2009 Sep 17
2
Which one shall I use? '=' or '<-'?
Hi,
I was told to use "<-" instead of "=" in the mailing list. I am
wondering what the difference between them?
Regards,
Peng
2009 Oct 23
3
How to make R packages?
I found the following document on making R packages. But it is old.
I'm wondering if there is more current ones and hopefully more
complete ones.
http://biosun1.harvard.edu/courses/individual/bio271/lectures/L6/Rpkg.pdf
2009 Mar 18
3
numeric equality
Dear all,
I am totally confused by the following R output, but don't have a clue
for it.
> a <- 1 - 0.2
> a == 0.8
[1] TRUE
> a <- 1 - 0.8
> a == 0.2
[1] FALSE
> a <- 1 - 0.5
> a == 0.5
[1] TRUE
> a <- 1 - 0.6
> a == 0.4
[1] TRUE
> a <- 1 - 0.9
> a == 0.1
[1] FALSE
My R version is Windows XP R version 2.8.1 (2008-12-22).
2009 Jul 01
1
Are there any bloggers amoung us going to useR 2009 ?
*(note*: This is an R community question, not a statistical nor coding
question. Since this is my first time writing such a post, I hope no one
will take offence of it.)
Hello all,
I will be attending useR 2009 next week, and was wondering if there are any
of you who are *bloggers *intending to participate and report on useR 2009?
If so - I would love to know your blogs URL so as to follow you.
2009 Mar 11
2
Building R for Vistax64
Hi all,
I have successfully built from source the 32-bit version of R on my
Vista 64-bit box. I was hoping to graduate to a 64-bit version so I
could analyze some larger data sets. I have 8gb RAM installed.
I downloaded the latest 64-bit versions of Perl and MinGW but wasn't
sure how to edit the source code to have it build using the 64-bit
versions. I did change my PATH variable to
2009 Jun 03
0
Revolutions blog: May roundup
...dar.html
Comments and suggestions about the blog are welcome! (My email is
david at revolution-computing.com ).
Regards to all,
# David Smith
--
David M Smith <david at revolution-computing.com>
Director of Community, REvolution Computing www.revolution-computing.com
Tel: +1 (206) 577-4778 x3203 (San Francisco, USA)
Check out our upcoming events schedule at www.revolution-computing.com/events
2009 Nov 03
0
Revolutions blog: October roundup
...so
follow the blog using an RSS reader like Google Reader, or by
following me on Twitter (I'm @revodavid).
Cheers to all,
# David Smith
--
David M Smith <david at revolution-computing.com>
VP of Community, REvolution Computing ?http://blog.revolution-computing.com
Tel: +1 (206) 577-4778 x3203 (Palo Alto, CA, USA)
Download REvolution R free:
www.revolution-computing.com/downloads/revolution-r.php