How do I make my graphs show positive numbers? The binomial answers are all positive, but the graphs keep showing a negative.

![> dbinom (0,4,0.6) [1] 0.0256 > dbinom (1,4,0.6) [1] 0.1536 > dbinom (2,4,0.6) [1] 0.3456 > dbinom (3,4,0.6) [1] 0.3456 > dbi](http://img.homeworklib.com/questions/31ca4540-e8eb-11ea-b916-1183e130e41c.png?x-oss-process=image/resize,w_560)

Correct Code is :
shadeDist(xshade=0,ddist="dbinom",parm1 = 4,parm2=0.6,
xlab="Probability democrats win 0",main="Political Races")
shadeDist(xshade=1,ddist="dbinom",parm1 = 4,parm2=0.6,
xlab="Probability democrats win 1",main="Political Races")
shadeDist(xshade=2,ddist="dbinom",parm1 = 4,parm2=0.6,
xlab="Probability democrats win 2",main="Political Races")
shadeDist(xshade=3,ddist="dbinom",parm1 = 4,parm2=0.6,
xlab="Probability democrats win 3",main="Political Races")
shadeDist(xshade=4,ddist="dbinom",parm1 = 4,parm2=0.6,
xlab="Probability democrats win 4",main="Political Races")
You have to understand the arguments used by the function shapeDist .
The Main Arguments are :
ddist : Where you have to specify which distrubution you want to draw the pdf if , here it is dbinom . You have to input as a character , thus "dbinom" .
parm1 and parm 2 are the two parameters of the distribution , here n and p respectively .
xshade : The point where you want to start/end shading .
** In your code , as you have put wrong arguments , by default R chose "dnorm" in ddist argument thus showing negative value and a symmetric Normal distribution .
How do I make my graphs show positive numbers? The binomial answers are all positive, but...