GeoGebra

BarChart Command

Jump to: navigation, search
Command Descriptions
A

Angle AffineRatio AngleBisector Append Arc Area Asymptote Axes AxisStepX AxisStepY

B

BarChart BinomialCoefficient BoxPlot

C

CellRange Center Centroid Circle CircularArc CircularSector CircumcircularArc CircumcircularSector Circumference Column ColumnName Conic ConjugateDiameter ConstructionStep Corner CorrelationCoefficient CountIf Covariance CrossRatio Curvature CurvatureVector Curve

D

Delete Derivative Determinant Dilate Direction Directrix Distance Div

E

Element Ellipse Expand Extremum

F

Factor First FitExp FitLine FitLineX FitLog FitLogistic FitPoly FitPow FitSin Focus FormulaText FractionText Function

G

GCD

H

Histogram Hyperbola

I

If InflectionPoint Insert Integral Intersect Intersection InverseNormal Invert IsDefined IsInteger Iteration IterationList

J

Join

K

KeepIf

L

Last LCM Length LetterToUnicode Line LinearEccentricity Locus LowerSum

M

MajorAxis Max Mean MeanX MeanY Median Midpoint Min MinorAxis Mod Mode

N

Name Normal

O

Object OsculatingCircle

P

Parabola Parameter Perimeter PerpendicularBisector PerpendicularLine PerpendicularVector Point Polar Polygon Polynomial Product

Q

Q1 Q3

R

Radius RandomBetween RandomBinomial RandomNormal RandomPoisson Ray Reflect Relation RemoveUndefined Reverse Root Rotate

S

Row SD Sector Segment Semicircle SemiMajorAxisLength SemiMinorAxisLength Sequence SigmaXX SigmaXY SigmaYY Simplify Slope Sort Sum Sxx Sxy Syy

T

TableText Take Tangent TaylorPolynomial Text TextToUnicode Translate Transpose TrapezoidalSum

U

UnicodeToLetter UnicodeToText Union UnitPerpendicularVector UnitVector UpperSum

V

Variance Vector Vertex

Syntax

  • BarChart[Start Value, End Value, List of Heights]: Creates a bar chart over the given interval where the number of bars is determined by the length of the list whose elements are the heights of the bars.
  • BarChart[Start Value a, End Value b, Expression, Variable k, From Number c, To Number d]: Creates a bar chart over the given interval [a, b], that calculates the bars’ heights using the expression whose variable k runs from number c to number d.
  • BarChart[Start Value a, End Value b, Expression, Variable k, From Number c, To Number d, Step Width s]: Creates a bar chart over the given interval [a, b], that calculates the bars’ heights using the expression whose variable k runs from number c to number d using step width s.
  • BarChart[List of Raw Data, Width of Bars]: Creates a bar chart using the given raw data whose bars have the given width.
  • BarChart[List of Data, List of Frequencies]: Creates a bar chart using the list of data with corresponding frequencies.

Examples

  • BarChart[10, 20, {1,2,3,4,5} ] gives you a bar chart with five bars of specified height in the interval [10, 20].
  • If p = 0.1, q = 0.9, and n = 10 are numbers, then BarChart[ -0.5, n + 0.5, BinomialCoefficient[n,k]*p^k*q^(n-k), k, 0, n ] gives you a bar chart in the interval [-0.5, n+0.5]. The heights of the bars depend on the probabilities calculated using the given expression.
  • BarChart[ {1,1,1,2,2,2,2,2,3,3,3,5,5,5,5}, 1]

Source: Statistic commands