Graphics`Graphics`
LogPlot,ListLogPlot,およびその関連関数が組込みのMathematicaカーネルに加わった.
PolarPlotおよびListPolarPlotが組込みのMathematicaカーネルに加わった.
GraphicsGridが組込みのMathematicaカーネルに加わった.
BarChartおよびその関連関数が組込みのMathematicaカーネルに加えられた.
PieChartが組込みのMathematicaカーネルに加えられた.
Histogramが組込みのMathematicaカーネルに加えられた.
ErrorListPlotが新しく作成されたErrorBarプロットパッケージで利用できるようになった.
新しいシステム関数
LogPlot,LogLinearPlot,LogLogPlotが組込みのMathematicaカーネルの一部になった:
![<< Graphics`Graphics`;
LogPlot[Sinh[x], {x, 0, 3}]](Files/Graphics.ja/legacy_1.gif)
LogPlotおよびListLogPlotはそれぞれLinearLogPlotおよびLinearLogListPlotと同じ機能を持つ:
![<< Graphics`Graphics`;
LinearLogListPlot[Exp[Range[0, 3, 0.2]]]](Files/Graphics.ja/legacy_2.gif)
ListLogPlot,ListLogLinearPlot,ListLogLogPlotはLogListPlot,LogLinearListPlot,LogLogListPlotと同じ機能を持つ:
![<< Graphics`Graphics`;
LogLogListPlot[Range[10]^2]](Files/Graphics.ja/legacy_3.gif)
PolarPlotが組込みのMathematicaカーネルの一部になった:
![<< Graphics`Graphics`;
PolarPlot[Sqrt[t], {t, 0, 20}]](Files/Graphics.ja/legacy_4.gif)
ListPolarPlotはPolarListPlotと同じ機能を持つ:
![<< Graphics`Graphics`;
PolarListPlot[Range[0, 10, 0.2]]](Files/Graphics.ja/legacy_5.gif)
グラフィックスは二次的出力として表示されるものではなくなったので,DisplayTogetherの代りにShowが使えるようになった:
![<< Graphics`Graphics`;
DisplayTogether[Plot[x, {x, 0, 1}], Plot[x^2, {x, 0, 1}]]](Files/Graphics.ja/legacy_6.gif)
グラフィックスは二次的出力として表示されるものではなくなったので,DisplayTogetherArrayの代りにGraphicsGridが使えるようになった:
![<< 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.ja/legacy_7.gif)
![<< Graphics`Graphics`;
TextListPlot[RealDigits[N[Pi]][[1]]]](Files/Graphics.ja/legacy_8.gif)
![<< Graphics`Graphics`;
LabeledListPlot[RealDigits[N[Pi]][[1]]]](Files/Graphics.ja/legacy_9.gif)
![<< Graphics`Graphics`;
ListAndCurvePlot[Range[10], x + Sin[x], {x, 0, 10}]](Files/Graphics.ja/legacy_10.gif)
指定された関数によりスケールされた座標付きのプロットを表示する:
![<< Graphics`Graphics`;
ScaledPlot[Sin[x], {x, 0, \[Pi]}, ScaleFunction -> {Cos, ArcSin},
AxesOrigin -> Automatic, PlotStyle -> Automatic]](Files/Graphics.ja/legacy_11.gif)
指定された関数によりスケールされた座標付きのリストプロットを表示する:
![<< Graphics`Graphics`;
ScaledListPlot[Table[Sin[x], {x, 0, \[Pi], .025 \[Pi]}],
ScaleFunction -> {# &, ArcSin}, AxesOrigin -> Automatic,
PlotStyle -> Automatic]](Files/Graphics.ja/legacy_12.gif)
SkewGraphicsおよびTransformGraphicsの機能が,組込みのMathematicaカーネル関数GeometricTransformationで利用できるようになった:
![<< Graphics`Graphics`;
Show[SkewGraphics[Plot[Sin[x], {x, 0, 2 Pi}], {{1, 1}, {0, 1}}]]](Files/Graphics.ja/legacy_13.gif)
Histogramが組込みのMathematica関数になった:
![<< Graphics`Graphics`;
Histogram[{.9, .0, .2, .8, .6, .9, .6, .9, .6, .3}]](Files/Graphics.ja/legacy_14.gif)
BarChartが組込みのMathematica関数になった:
![<< Graphics`Graphics`;
BarChart[Range[3]]](Files/Graphics.ja/legacy_15.gif)
PercentileBarChartの機能がBarChartで利用できるようになった:
![<< Graphics`Graphics`;
PercentileBarChart[{1, -3, 4, 5, 2, 3}, {3, 6, 4, 3}]](Files/Graphics.ja/legacy_16.gif)
StackedBarChartの機能がBarChartのChartLayoutを使って利用できるようになった:
![<< Graphics`Graphics`;
StackedBarChart[{1, -3, 4, 5, 2, 3}, {3, 6, 4, 3}]](Files/Graphics.ja/legacy_17.gif)
GeneralizedBarChartは以下の定義で置き換えることができる:
![<< 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.ja/legacy_18.gif)
PieChartが組込みのMathematica関数になった:
![<< Graphics`Graphics`;
PieChart[Range[4]]](Files/Graphics.ja/legacy_19.gif)
Graphics`Graphics`のErrorListPlotがErrorBarプロットパッケージに含まれるようになった:
![<< Graphics`Graphics`
ErrorListPlot[{{1, 0.2}, {2, 0.3}, {1.5, 0.1}, {0.8, 0.25}}]](Files/Graphics.ja/legacy_20.gif)
ErrorListPlotの機能を使うためには,ErrorBarPlots`をロードする:
もとのパッケージは,Web(library.wolfram.co.jp/infocenter/MathSource/6808)から利用できるようになっている.