Graphics`Graphics`
LogPlot, ListLogPlot, and related functions have been added to the built-in Mathematica kernel.
PolarPlot and ListPolarPlot have been added to the built-in Mathematica kernel.
GraphicsGrid has been added to the built-in Mathematica kernel.
BarChart and related functions have been added to the built-in Mathematica kernel.
PieChart has been added to the built-in Mathematica kernel.
Histogram has been added to the built-in Mathematica kernel.
ErrorListPlot is available in the newly created ErrorBar Plotting Package.
New system functions
LogPlot, LogLinearPlot, and LogLogPlot are part of the built-in Mathematica kernel:
![<< Graphics`Graphics`;
LogPlot[Sinh[x], {x, 0, 3}]](Files/Graphics.zh/legacy_1.gif)
LogPlot and ListLogPlot have the same functionality as LinearLogPlot and LinearLogListPlot:
![<< Graphics`Graphics`;
LinearLogListPlot[Exp[Range[0, 3, 0.2]]]](Files/Graphics.zh/legacy_2.gif)
ListLogPlot, ListLogLinearPlot, and ListLogLogPlot have the same functionality as LogListPlot, LogLinearListPlot, and LogLogListPlot:
![<< Graphics`Graphics`;
LogLogListPlot[Range[10]^2]](Files/Graphics.zh/legacy_3.gif)
PolarPlot is now part of the built-in Mathematica kernel:
![<< Graphics`Graphics`;
PolarPlot[Sqrt[t], {t, 0, 20}]](Files/Graphics.zh/legacy_4.gif)
ListPolarPlot has the same functionality as PolarListPlot:
![<< Graphics`Graphics`;
PolarListPlot[Range[0, 10, 0.2]]](Files/Graphics.zh/legacy_5.gif)
Show can be used in place of DisplayTogether since graphics are no longer displayed as side effects:
![<< Graphics`Graphics`;
DisplayTogether[Plot[x, {x, 0, 1}], Plot[x^2, {x, 0, 1}]]](Files/Graphics.zh/legacy_6.gif)
GraphicsGrid can be used in place of DisplayTogetherArray since graphics are no longer displayed as side effects:
![<< Graphics`Graphics`;
DisplayTogetherArray[
Table[DensityPlot[Sin[x + a] Cos[y + b], {x, 0, Pi}, {y, 0, Pi}], {a,
0, 2}, {b, 0, 2}]]](Files/Graphics.zh/legacy_7.gif)
Generate a list plot with text markers:
![<< Graphics`Graphics`;
TextListPlot[RealDigits[N[Pi]][[1]]]](Files/Graphics.zh/legacy_8.gif)
![<< Graphics`Graphics`;
LabeledListPlot[RealDigits[N[Pi]][[1]]]](Files/Graphics.zh/legacy_9.gif)
Combine a plot and a list plot:
![<< Graphics`Graphics`;
ListAndCurvePlot[Range[10], x + Sin[x], {x, 0, 10}]](Files/Graphics.zh/legacy_10.gif)
Display a plot with coordinates scaled by given functions:
![<< Graphics`Graphics`;
ScaledPlot[Sin[x], {x, 0, \[Pi]}, ScaleFunction -> {Cos, ArcSin},
AxesOrigin -> Automatic, PlotStyle -> Automatic]](Files/Graphics.zh/legacy_11.gif)
Display a list plot with coordinates scaled by given functions:
![<< Graphics`Graphics`;
ScaledListPlot[Table[Sin[x], {x, 0, \[Pi], .025 \[Pi]}],
ScaleFunction -> {# &, ArcSin}, AxesOrigin -> Automatic,
PlotStyle -> Automatic]](Files/Graphics.zh/legacy_12.gif)
The functionality of SkewGraphics and TransformGraphics is now available in the built-in Mathematica kernel function GeometricTransformation:
![<< Graphics`Graphics`;
Show[SkewGraphics[Plot[Sin[x], {x, 0, 2 Pi}], {{1, 1}, {0, 1}}]]](Files/Graphics.zh/legacy_13.gif)
Histogram is now a built-in Mathematica function:
![<< Graphics`Graphics`;
Histogram[{.9, .0, .2, .8, .6, .9, .6, .9, .6, .3}]](Files/Graphics.zh/legacy_14.gif)
BarChart is now a built-in Mathematica function:
![<< Graphics`Graphics`;
BarChart[Range[3]]](Files/Graphics.zh/legacy_15.gif)
The functionality of PercentileBarChart is now available in BarChart:
![<< Graphics`Graphics`;
PercentileBarChart[{1, -3, 4, 5, 2, 3}, {3, 6, 4, 3}]](Files/Graphics.zh/legacy_16.gif)
The functionality of StackedBarChart is now available using ChartLayout in BarChart:
![<< Graphics`Graphics`;
StackedBarChart[{1, -3, 4, 5, 2, 3}, {3, 6, 4, 3}]](Files/Graphics.zh/legacy_17.gif)
GeneralizedBarChart can be replaced by the following definition:
![<< Graphics`Graphics`;
GeneralizedBarChart[{{1, 3, .2}, {4, 9, 1}, {2.1, -6, .5}}, {{3,
5, .5}, {1.5, -2, 1}, {-.4, 2, .5}}, BarOrientation -> Horizontal]](Files/Graphics.zh/legacy_18.gif)
PieChart is now a built-in Mathematica function:
![<< Graphics`Graphics`;
PieChart[Range[4]]](Files/Graphics.zh/legacy_19.gif)
ErrorListPlot from Graphics`Graphics` is now found in the ErrorBar Plotting Package.
![<< Graphics`Graphics`
ErrorListPlot[{{1, 0.2}, {2, 0.3}, {1.5, 0.1}, {0.8, 0.25}}]](Files/Graphics.zh/legacy_20.gif)
Load ErrorBarPlots` to use ErrorListPlot functionality:
The original package is now available on the web at library.wolfram.com/infocenter/MathSource/6808.