Displaying 3 results from an estimated 3 matches for "maccarthi".
Did you mean:
maccarthy
2010 Sep 13
1
Transparent Labels for Polar Plot
Hello,
I am currently using the polar.plot function in the plotrix package to graph data. Unfortunately, it seems that the default for the labels is to have a background color that is covering the line representing my data, making it difficult to read. Is there a way to make this label background transparent?
Example:
lengths <- 0:72
bearing <- seq(from=0, to=360, by=5)
2003 Jan 05
4
mounting smbfs...
Hi.
I've been at it for a solid week now....trying to figure out how to mount a
smbfs-resource at boot. See i need to do the following;
mount -t smbfs //<machine_name>/<share> /home/<usr_name>/music
...only thing is, I have to run the cmd as a regular user. The easiest thing
would offcourse be to have i run at when booting, but i don't know how to do
that. Any help
2007 Oct 15
2
Association Help , 2 Teams playing a FootballGame
So I have the models
class FootballGame < ActiveRecord::Base
end
and
class Team < ActiveRecord::Base
end
I want to be able to do something like this
@t1 = Team.create(:name=>"Michigan Wolverines football")
@t1.save
@t2 = Team.create(:name=>"Penn State Nittany Lions football")
@t2.save
@g = FootballGame.create(:hometeam => @t1, :awayteam => @t2)
@g.save