search for: charts

Displaying 20 results from an estimated 1548 matches for "charts".

Did you mean: chars
2006 Jul 11
6
@record.each do |record|
...m[''id''] ] ''id'' is passed into the controller and @chart is all the possible records that have record_id = id. My problem is this. I know there is only one chart w/ record_id = id. But the search that i''ve done thinks that there could be a magnitude of charts with record_id = id. I need to be able to find the chart that has record_id = id so i can delete this chart. >From the view side, I was able to solve a similar sitiuation with @chart.each do |chart| if chart.record_id = id ''delete'' end Is there a way to do a similar for l...
2006 Jul 10
4
find()
Can some1 help me on syntax with the find() function. I''m trying to pull up a table record, called chart, that has a particular field specified. ie chart has a field called record_id, which i know. How can i find the record that contains chart.record_id. something like chart = Chart.find(:conditions => "record_id = :id") this gives me an error. I''m passing
2006 Jul 10
3
finding particular record
Hi, I''m looking for a particular record from a view called ''charts''. The view ''charts'' joins data from a table ''record'' and a table ''owners''. I''m trying to pull up data from ''charts'' that lists certain data from ''record'' ie. I know i need record.id = 5...
2010 Apr 27
2
how to set chart output size in rgl (surface3d)?
Hi R users, Does anyone know how to change the size of 3d charts? I'm using surface3d in rgl package, opening a new window each time to display the chart. I want it so that the chart fills the whole window, because when I output it to png, I don't want all the white space around the chart (right now, i'm getting this white "border" around t...
2006 Nov 16
4
Excel Chart
...39;ve a question about excel chart: i want to export some data into excel and generate a chart with different styles. unfortunately, the generated chart is in fullscreeen-mode. how can i set the size by generating the chart? does anybody know a page where i can find some information about excel charts? thanks a lot! Pascal -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39U...
2006 Sep 19
1
Adding percentage to Pie Charts (was (no subject))
...t they are lined up vertically for easy comparison (my example would have been better if a lot of the vertical space had been removed so the pieces of interest were closer together), the pie chart would generally have the percentages non-aligned causing more work for the viewer to compare them. Dotcharts also remove the dependence/temptation to use color and any psycolocical influences that may have on the interpretation. I have yet to see a pie chart that was better at conveying the true nature of the data than a well done dot chart of the same data, I have seen multiple cases where the dot chart...
2009 May 05
4
Create Pie chart from .csv file
Hi all, I am looking to create a pie chart from a given column in a .csv file. My class variables are as follows: entry_type, uniquekey, types, title, url, abstract, journal, author, month, year, howpublished So say I want to export a pie chart that groups together all entries under 'types' e.g. 3 x statistics 2x education etc. Im looking to have a piechart represent this
2010 Jan 13
1
plotting moving range control chart
I have been having the same problem as poster Hodgess, below. It appears that her question was never answered, so I would like to share a solution with the community. The problem is the (apparent?) inability to produce moving range process behavior (a.k.a. "control") charts with individuals data in the package "qcc" (v. 2.0). I have also struggled with the same limitation in package "IQCC" (v. 1.0). The package "qAnalyst" (v. 0.6.0) provides an option to produce a moving range chart with individuals data. The example given in the qAnalys...
2010 Aug 20
0
plotting moving range control chart with qcc. . .
This regards an old post that posed the question: Tom Hodgess wrote: "The problem is the (apparent?) inability to produce moving range process behavior (a.k.a. "control") charts with individuals data in the package "qcc" (v. 2.0). I have also struggled with the same limitation in package "IQCC" (v. 1.0). The package "qAnalyst" (v. 0.6.0) provides an option to produce a moving range chart with individuals data. " [It does, but the look o...
2009 Feb 03
2
ThinkCell type waterfall charts in R?
Hi all, with PowerPoint and ThinkCell one can draw something they call waterfall chart and it looks like this: http://www.think-cell.com/products/images/waterfall.gif I found discussions on waterfall charts in the archive of this mailinglist, but unfortunately they looked totally different. Other names for this type of plot seem to be bridge chart, cascade chart, stair case chart, etc. but neither of them brought successful results. So I decided to ask you directly on the list. Does anyone have a...
2010 Feb 04
6
problems with SPC charts in R
Hi all, I am using SPC techniques of plotting Xbar, R, S, P and C charts in R.For this I am using qcc package in R and also using the following document for reference. http://www.stat.unipg.it/~luca/Rnews_2004-1-pag11-17.pdf But while plotting S chart, R chartchart and also C chart I am getting following errors. I have plotted the Xbar chart successfully using follow...
2007 Sep 04
3
Pie Chart Labels
I am having trouble finding out how to adjust the position of labels on pie charts. For the small wedges, many of the labels overlap making it impossible to read. Is there any way to offset the labels so that they don't overlap? Adam Green USGS Patuxent Wildlife Research Center [[alternative HTML version deleted]]
2007 Nov 08
2
centile reference chart / clildren growth chart - what package/method to use
We are constructing growth charts (age/weight and age/length) for children with diagnosis that impacts weight/length. But we we don't know how to use R for producing growth charts. We are collection data of Age, Weight and Length. The data are used to produce diagnosis-specific Growth charts (like the CDC Growth Charts: htt...
2018 Apr 22
3
Gantt Chart Using Plotrix
Hi I am trying to generate a complex Gantt chart using the gantt.chart function in the plotrix package. Ideally I would like to use a spreadsheet to populate the activities (tasks) and start and end dates that this function expects and then export the spreadsheet file as a .CSV text file so I can read in this file to generate the gantt chart. Reading through the help file I have not been able to
2010 Nov 09
2
help cannot put multiple chart Stacked Bar (from PerformanceAnalysis library) in a single plot
Hi I'm having problems displaying multiple chart.StackedBar from PerformanceAnalysis library on a single plot. I've tried using par(mfrow=c(2,1)) but that doesn't work. If I do it with barplot(), it works fine and I see both plots on a single plot. > plot(mfrow=c(2,1)) > barplot(blahblah) > barplot(blahblah) However if I try to use chart.StackedBar, the second entry
2006 Jan 18
5
Ruby and charting
Hi- I need to create simple charts on the fly - I had used JFreeChart in the past with inJ2EE apps. Is there any equivalent here for Ruby. My charting needs are simple: just line charts. Also if anyone has done this, pls let me know how I should go about in doing it. Thanks -- Posted via http://www.ruby-forum.com/.
2007 Dec 31
3
stack charts right on top of each other
Hi, I tried to stack two charts on top of each other using the following R functions: par(mfrow=c(2,1)) plot(rnorm(1:3),xaxt="n",xlab="") plot(rnorm(1:3)) This created two charts, one on top of the other, but there is too much space between them. Does anyone know how to elimiate the space in between the char...
2011 Mar 23
4
Bar Chart
How do you do a bar chart of 2 vectors? I have one vector which has 10 numbers, and another which has 10 names. The numbers are the frequency of the corresponding name, but when I do a bar chart it says that there is no height. Thanks. -- View this message in context: http://r.789695.n4.nabble.com/Bar-Chart-tp3399924p3399924.html Sent from the R help mailing list archive at Nabble.com.
2011 Jun 03
0
Pareto Chart using GUI
Hi, I am exploring GUI's for doing Quality Management/Assurance/Improvement activities and this is another mail in series! Focus of this mail is Pareto Analysis for following data (Truncated): Date Defect code Operator Shift Machine Cost - Internal Cost - External Cost - Total 8-Jun-2011 410 Joe 1 AAA 5 50 55 8-Jun-2011 465 Joe 1 AAA 1.5 25 26.5 8-Jun-2011 412 Joe 1 AAA 1.5 10 11.5
2010 Jun 24
2
Correctly plotting bar and scatter chart on 2-y axis plot with par(new=T)
Hello Nabble users, A question about having two y axes on a chart. I'm trying to show on the left (first) y axis a measure used in an experiment; the x axis shows the experiment number, that has been sorted in a specific manner -- i.e. not Experiments 1,2,3,n, but could be Experiment 6,1,18,n; the right (second) y axis shows an experimental variable. The idea of the chart is to show how