Which of the cells depicted in the line graph in figure 8-8 are most likely cancerous?
The graph on figure 8-8 is not shown here so there really is not any way to know which one is correct. Without his information the answer is not able to be known.
I need a bar graph on which soap is better. Liquid or bar soap?
liquid soap is better because who wants to use someone old nasty bar soap with all of that sick sweat for other people not me
A pictograph is a picture or symbol that was a earlier written communication.
Data Tables are useful in science because data tables help you organize your observation and results. ME. Sophie. Got that right off of the book
When do you use a circle or pie graph?
A pie graph is a good tool for when you want to emphasize the relative proportions of the numbers you're comparing.
While it's not as accurate an indicator as a line graph or a bar graph would be, the eye can better distinguish the sizes of the wedges in relation to each other.
What should a well-constructed histogram reveal to you?
Whether or not the data are normally distributed and the Customer expectations.
How do you make a bar graph on Microsoft Word 2003?
Easiest is to make it in Excel and import it to Word (either as an image, an OLE object, or whatever.
Is a line graph used to show continuous data?
It can be, but not necessarily.
If I had the heights (continuous variable) of a class of students I might use a histogram. Conversely, if I had the number of cars (discrete variable) driving by every minute, I would use a line graph. It all depends on which kind of graph conveys the information to your audience in the best way.
A pie chart only shows up to 100%, divided into portions.
The key
false
Why are charts called pie charts and not pizza charts?
One view:
Because they just are. Pi is a Greek letter and most mathematics came from the Greeks.
Another view:
According to wikipedia, it is spelled the same as "pie" because it is named for its resemblance to a pie which has been sliced. The wikipedia goes on to suggest "The earliest known pie chart is generally credited to William Playfair's Statistical Breviary of 1801." The originator of the chart might not have been familiar with the Napoletana cuisine at that time he conceived of its name.
One more view:
Pi is an integral part of the circle. R=(pi)r2. A pie chart is a circle.
Can a pie graph be used to show trends?
it can but it would be hard it would be a lot easier to use a line graph
Write a C program to draw a pie chart?
int main()
{
int gd = DETECT, gm;
int midx, midy;
initgraph(&gd, &gm, "C:\TC\BGI");
setcolor(MAGENTA);
rectangle(0,40,639,450);
settextstyle(SANS_SERIF_FONT,HORIZ_DIR,2);
setcolor(WHITE);
outtextxy(275,10,"Pie Chart");
midx = getmaxx()/2;
midy = getmaxy()/2;
setfillstyle(LINE_FILL,BLUE);
pieslice(midx, midy, 0, 75, 100);
outtextxy(midx+100, midy - 75, "20.83%");
setfillstyle(XHATCH_FILL,RED);
pieslice(midx, midy, 75, 225, 100);
outtextxy(midx-175, midy - 75, "41.67%");
setfillstyle(WIDE_DOT_FILL,GREEN);
pieslice(midx, midy, 225, 360, 100);
outtextxy(midx+75, midy + 75, "37.50%");
getch();
return 0;
}
Which of these explains how a bar graph differs from a line graph?
Instead of connecting points with a line, a bar graph uses bars to represent data.