search for: my_graph

Displaying 2 results from an estimated 2 matches for "my_graph".

Did you mean: my_graphs
2008 Jul 22
2
saving plot both as jpg and pdf
Hi, I want to save a plot automatically as a pdf and jpg, and if I open the pdf device first and jpeg second only the jpeg file saves correctly ?. If I do reverse, only the pdf file saves correctly. pdf('E:/my_graphs/test1.pdf', bg = "white") jpeg('E:/my_graphs/test1.jpg', quality = 100, bg = "white", res = 200, width = 7, height = 7, units = "in") plot(seq(1, 10), seq(1, 10)) dev.off() dev.off() In this case the pdf is not saved correctly and cannot be viewed by Adob...
2008 Feb 04
0
Scruffy Bar Chart Question
Hi- I have been using Scruffy for a couple days and it''s worked out really well. I am stuck though getting a bar chart to work with a single line. Here''s what I am doing: general chart stuff..graph.new...etc ... my_graph.add(:bar, ''GOAL'', [250,350]) my_graph.add(:bar, ''ACTUAL'', [150,200]) This works, but what I was is a SINGLE Bar with one value layered over the other: my_graph.add(:bar, ''GOAL'', [250]) my_graph.add(:bar, ''ACTUAL'', [150]) This...