Displaying 20 results from an estimated 1000 matches similar to: "Seg. faults in mapthin (in package maps!)"
2004 Jun 14
4
Readline on R-1.9.1a
Hello! I'm trying to install R-1.9.1a with readline on Suse Linux. As
recommended in other posts, I've installed readline and readline-devel:
kevin@redtail:~/R-1.9.1> rpm -qa | grep readline
readline-devel-32bit-9.0-0
readline-32bit-9.0-0
readline-4.3-207
readline-devel-4.3-207
Then I run configure with readline:
./configure --with-readline
The relevant lines are:
2004 Jul 01
1
Seg. faults in mapthin
Hi everyone! I know segmentation faults are awfully hard to diagnose, but
I'm experiencing a fairly regular pattern of seg. faults when plotting using
map in the maps package. Starting R fresh, I run:
require(maps)
for (i in 1:50) {
cat(i, "\n")
map("state")
}
I always get the same result:
1
2
3
4
5
Process R segmentation fault at Thu Jul 1 09:07:39 2004
With
2007 Dec 20
3
How-to spec this helper method?...
Hey gang,
I have this dead-simple method defined in a helper:
def add_category_link(name)
link_to_function name do |page|
page.insert_html :bottom, :categories, :partial =>
''category'', :object => Category.new
end
end
Where, and mostly how, would I spec this? I haven''t been able to find
how to stub the rjs in a helper spec, so
2009 Feb 02
5
[Cucumber] Cucumber and acts_as_xapian
Hey list,
Anyone have experience with acts_as_xapian and Cucumber? I''m
struggling with updating xapian''s index, to actually "find" fluff
that has been indexed..
In a scenario, I''m adding a bunch of articles, and in the actual
search step, I run:
When "I search for \"$query\"" do |query|
%x[rake RAILS_ENV=test xapian:update_index]
2003 Nov 20
3
file not found?
Hi R maintainers:
when I use
update.packages()
And I try to update the package "maps"
maps :
Version 2.0-9 in D:/rw1080/library
Version 2.0-10 on CRAN
Update (y/N)? y
The following message appears:
trying URL
`http://cran.r-project.org/bin/windows/contrib/1.8/maps_2.0-10.zip'
Error in download.file(url, destfile, method, mode = "wb") :
cannot open URL
2005 Feb 04
1
Opening for a Statistics Practitioner in San Francisco
Statistics Practitioner Fluent in R - San Francisco CA
Loyalty Matrix Inc., in downtown San Francisco, is expanding our team. We
are a young, dynamic and growing team of multidisciplinary marketing and
technical professionals. We deliver value to our clients by discovering
actionable tactical and strategic insights in actual customer data augmented
with demographics and research.
You will work
2002 Aug 26
1
Rprof and setMethod conflict (PR#1949)
Full_Name: Kevin C. Bartz
Version: 1.5.1
OS: Solaris 2.6
Submission from: (NULL) (192.223.226.5)
A while ago, I noticed this oddity about R profiling and setMethod.
First, I "test out" Rprof.
> require(methods)
Loading required package: methods
[1] TRUE
>
> Rprof("test.out")
> data.frame("a")
X.a.
1 a
> Rprof(NULL)
So far, so good. Next, I
2008 Aug 29
3
BDDish rspecish question
Hey list,
This is a kinda quirky question for this list, but I do think it
belongs here. I''m currently writing an app with users with different
roles. Roles are sequentially so to speak, so role 2 can do everything
role 1 can, and so on.
If I truly test my whole app, I should test all behaviour for each
role, I guess. I could solve that by doing some clever shared steps
and
2009 Jan 17
3
[Cucumber] Struggling with "multiple step definitions"
Hey gang,
I find myself struggling with multiple step definitions in cucumber
all the time. I regularly test the contents of my flash[:notice] in
steps, since I think that''s part of the behaviour of the app. So,
while implementing a new feature, I ran into the following error:
/opt/local/lib/ruby/gems/1.8/gems/cucumber-0.1.15/bin/../lib/cucumber/
step_mother.rb:81:in
2008 Mar 13
22
Specifing methods in a steps_for block
Hey list,
I''m refactoring some much-used functionality into a common_steps step
group. Methods like this are in there:
steps_for :common do
Given "a number of existing $types?" do |type|
@initial_item_count = type.singularize.classify.constantize.count
end
When "the user adds an invalid $type" do |type|
post
2004 Feb 20
0
Data Analyst Intern position in San Francisco
We've sent this position out to SF Bay Area schools. Since we have
standardized on R as our preferred analytics platform it seemed
appropriate to post here.
We also have a full time Data Analyst position open. Search for
"Loyalty Matrix" on [1]www.craigslist.org Jim Porzak
Director of Analytics
Loyalty Matrix, Inc.
[2]www.LoyaltyMatrix.com
2004 Jan 29
3
Running R remotely in Windows Environment?
We are considering setting up a fast, RAM loaded machine as an "R-server"
to handle the big problems not suitable for individual desktops and, also,
to process ad hoc analysis requests via our portal. We are 99% a Windows
shop, so first choice is a windows server. We'll use (D)COM for the portal
interface and understand that.
What has me stumped is how to easily interface
2005 Apr 07
2
Order of boxes in boxplot()
Hi
Sorry for such an inane question - how do I control the order in which
the boxes are plotted using boxplot() when I pass it a formula and a
data.frame? It seems that the groups are plotted in alphabetical
order... I want to change this....
Many thanks
Mick
2008 Jun 04
8
Why has the --color gone from my life?
Hi all,
Running on OSX 10.5.3, Latest Rspec trunk, Rspec rails trunk, latest
autotest gem and rails 2.1
I''ve lost my colour output in autotest.
rake spec gives colour output, but autotest gives me black and white.
It was working a little bit before, I think I upgraded to the latest
versions of everything to get all the textmate snippets talking and being
friendly to one another again
2007 Jul 02
2
Problem installing R packages in OpenBSD
OS: OpenBSD version 4.1 i386
R version 2.4.1 (2006-12-18) installed as a binary package
$ ls
mapproj_1.1-7.1.tar.gz maps_2.0-36.tar.gz
$ sudo R CMD INSTALL mapproj_1.1-7.1.tar.gz
/usr/local/lib/R/bin/INSTALL[118]:
.: /usr/obj/i386/R-2.4.1/fake-i386/usr/local/lib/R/share/sh/dcf.sh: not
found
I get the same error message from the R command prompt using
2009 Feb 28
7
be_valid (validates_format_of ..., :on => :create)
Greetings,
How to write Example which will check if model''s variable''s
format is valid using :on => :create, like this:
class User < ActiveRecord::Base
...
validates_format_of :email, :with => /.../, :on => :create
...
Using following code is not right:
it "should ..." do
@user = users(:example_user)
@user.email =
2002 Aug 07
0
FW: [R] [ and setMethod conflict?
John Chambers suggested that I forward this thread (first posted to r-help)
along to r-devel...
Thanks,
Kevin
-----Original Message-----
From: John Chambers [mailto:jmc@research.bell-labs.com]
Sent: Tuesday, August 06, 2002 6:31 PM
To: Bartz, Kevin
Cc: r-help@stat.math.ethz.ch
Subject: Re: [R] [ and setMethod conflict?
Definitely something funny going on, but perhaps a little less sweeping
2001 Nov 18
7
Shaping incoming traffic?
I would like to differentiate incoming traffic streams to guarantee
minimum bandwidth to some services. However, as per the
Adv-Routing-HOWTO it appears that only outgoing traffic can be shaped.
Is this correct or is there a way of shaping incoming traffic?
The problem could possibly be overcome if there is a way of routing
traffic through a virtual host. Any tips on how to go about that?
--
2017 Jul 02
2
Big datasheet
Alguien sabe donde puedo encontrar algun datasheet gigante, de más de 5 gigas, para poder practicar con grandes volumenes de información?
Lo que quiero es probar a cargarlos con h20 y crear modelos con ellos. Me gustaria sobretodo problemas de clasificación...
Gracias
Jesús
[[alternative HTML version deleted]]
2005 Jun 10
6
us zipcode data map
i've search the email archives, searched the documention
of various map packages and done an R-site search, but
have been unable to find direct resources for creating maps
of the US that are colored or annotated or ... by zipcode
data.
For example, create a map of the US and color each zipcode
region by its population using two vectors z,p containing the
zipcode and population,