アップグレード情報:

Graphics`Graphics`

LogPlotListLogPlot,およびその関連関数が組込みのMathematicaカーネルに加わった.
PolarPlotおよびListPolarPlotが組込みのMathematicaカーネルに加わった.
GraphicsGridが組込みのMathematicaカーネルに加わった.
BarChartおよびその関連関数が組込みのMathematicaカーネルに加えられた.
PieChartが組込みのMathematicaカーネルに加えられた.
Histogramが組込みのMathematicaカーネルに加えられた.
ErrorListPlotが新しく作成されたErrorBarプロットパッケージで利用できるようになった.

新しいシステム関数

LogPlotLogLinearPlotLogLogPlotが組込みのMathematicaカーネルの一部になった:

Version 5.2 << Graphics`Graphics`;
LogPlot[Sinh[x], {x, 0, 3}]

LogPlotおよびListLogPlotはそれぞれLinearLogPlotおよびLinearLogListPlotと同じ機能を持つ:

Version 5.2 << Graphics`Graphics`;
LinearLogListPlot[Exp[Range[0, 3, 0.2]]]

ListLogPlotListLogLinearPlotListLogLogPlotLogListPlotLogLinearListPlotLogLogListPlotと同じ機能を持つ:

Version 5.2 << Graphics`Graphics`;
LogLogListPlot[Range[10]^2]

PolarPlotが組込みのMathematicaカーネルの一部になった:

Version 5.2 << Graphics`Graphics`;
PolarPlot[Sqrt[t], {t, 0, 20}]

ListPolarPlotPolarListPlotと同じ機能を持つ:

Version 5.2 << Graphics`Graphics`;
PolarListPlot[Range[0, 10, 0.2]]

グラフィックスは二次的出力として表示されるものではなくなったので,DisplayTogetherの代りにShowが使えるようになった:

Version 5.2 << Graphics`Graphics`;
DisplayTogether[Plot[x, {x, 0, 1}], Plot[x^2, {x, 0, 1}]]

グラフィックスは二次的出力として表示されるものではなくなったので,DisplayTogetherArrayの代りにGraphicsGridが使えるようになった:

Version 5.2 << Graphics`Graphics`;
DisplayTogetherArray[
 Table[DensityPlot[Sin[x + a] Cos[y + b], {x, 0, Pi}, {y, 0, Pi}], {a,
    0, 2}, {b, 0, 2}]]

テキストマーカの付いたリストプロットを作成する:

Version 5.2 << Graphics`Graphics`;
TextListPlot[RealDigits[N[Pi]][[1]]]

ラベル付きのリストプロットを作成する:

Version 5.2 << Graphics`Graphics`;
LabeledListPlot[RealDigits[N[Pi]][[1]]]

プロットとリストプロットを組み合せる:

Version 5.2 << Graphics`Graphics`;
ListAndCurvePlot[Range[10], x + Sin[x], {x, 0, 10}]

指定された関数によりスケールされた座標付きのプロットを表示する:

Version 5.2 << Graphics`Graphics`;
ScaledPlot[Sin[x], {x, 0, \[Pi]}, ScaleFunction -> {Cos, ArcSin}, 
 AxesOrigin -> Automatic, PlotStyle -> Automatic]

指定された関数によりスケールされた座標付きのリストプロットを表示する:

Version 5.2 << Graphics`Graphics`;
ScaledListPlot[Table[Sin[x], {x, 0, \[Pi], .025 \[Pi]}], 
 ScaleFunction -> {# &, ArcSin}, AxesOrigin -> Automatic, 
 PlotStyle -> Automatic]

SkewGraphicsおよびTransformGraphicsの機能が,組込みのMathematicaカーネル関数GeometricTransformationで利用できるようになった:

Version 5.2 << Graphics`Graphics`;
Show[SkewGraphics[Plot[Sin[x], {x, 0, 2 Pi}], {{1, 1}, {0, 1}}]]

Histogramが組込みのMathematica関数になった:

Version 5.2 << Graphics`Graphics`;
Histogram[{.9, .0, .2, .8, .6, .9, .6, .9, .6, .3}]

BarChartが組込みのMathematica関数になった:

Version 5.2 << Graphics`Graphics`;
BarChart[Range[3]]

PercentileBarChartの機能がBarChartで利用できるようになった:

Version 5.2 << Graphics`Graphics`;
PercentileBarChart[{1, -3, 4, 5, 2, 3}, {3, 6, 4, 3}]

StackedBarChartの機能がBarChartChartLayoutを使って利用できるようになった:

Version 5.2 << Graphics`Graphics`;
StackedBarChart[{1, -3, 4, 5, 2, 3}, {3, 6, 4, 3}]

GeneralizedBarChartは以下の定義で置き換えることができる:

Version 5.2 << 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]

PieChartが組込みのMathematica関数になった:

Version 5.2 << Graphics`Graphics`;
PieChart[Range[4]]
ErrorBarプロットパッケージ

Graphics`Graphics`ErrorListPlotErrorBarプロットパッケージに含まれるようになった:

Version 5.2 << Graphics`Graphics`
ErrorListPlot[{{1, 0.2}, {2, 0.3}, {1.5, 0.1}, {0.8, 0.25}}]

ErrorListPlotの機能を使うためには,ErrorBarPlots`をロードする:

もとのパッケージは,Web(library.wolfram.co.jp/infocenter/MathSource/6808)から利用できるようになっている.