Hi useRs. Does anybody know if there is some function that creates speedometer chart in R? Or if anybody has proposals where to start looking and which functions I can modify in order to create this kind of chart? Thanks for any help Andrija [[alternative HTML version deleted]]
Look at the R GoogleVis package. MW On Tue, Apr 2, 2013 at 9:42 AM, andrija djurovic <djandrija at gmail.com> wrote:> Hi useRs. > > Does anybody know if there is some function that creates speedometer chart > in R? Or if anybody has proposals where to start looking and which > functions I can modify in order to create this kind of chart? > > > Thanks for any help > > Andrija > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.
On Tue, Apr 2, 2013 at 4:00 PM, R. Michael Weylandt <michael.weylandt at gmail.com> wrote:> Look at the R GoogleVis package.Or read what Hadley W had to say on a similar question first: "The question would why would you want to? You are trying to understand your data, not driving a race car or aeroplane. " - http://r.789695.n4.nabble.com/Graphical-output-dials-and-meters-for-a-dashboard-td845090.html But maybe you *are* creating a dashboard for an R-powered race car, in which case here's an R-native version of the google vis speedometers: http://gastonsanchez.wordpress.com/2013/01/10/gauge-chart-in-r/ Can't wait to see the full source code for your race car: require(engine) block = engine(cc="2000",cylinders=6) require(downforce) ... Barry