LogPlot,ListLogPlot,およびその関連関数が組込みのMathematicaカーネルに加わった.
PolarPlotおよびListPolarPlotが組込みのMathematicaカーネルに加わった.
GraphicsGridが組込みのMathematicaカーネルに加わった.
BarChartおよびその関連関数が組込みのMathematicaカーネルに加えられた.
PieChartが組込みのMathematicaカーネルに加えられた.
Histogramが組込みのMathematicaカーネルに加えられた.
ErrorListPlotが新しく作成されたErrorBarプロットパッケージで利用できるようになった.
新しいシステム関数
LogPlot,LogLinearPlot,LogLogPlotが組込みのMathematicaカーネルの一部になった:
LogPlot[Sinh[x], {x, 0, 3}]LogPlotおよびListLogPlotはそれぞれLinearLogPlotおよびLinearLogListPlotと同じ機能を持つ:
ListLogPlot[Exp[Range[0, 3, 0.2]]]ListLogPlot,ListLogLinearPlot,ListLogLogPlotはLogListPlot,LogLinearListPlot,LogLogListPlotと同じ機能を持つ:
ListLogLogPlot[Range[10] ^ 2]PolarPlotが組込みのMathematicaカーネルの一部になった:
PolarPlot[Sqrt[t], {t, 0, 20}]ListPolarPlotはPolarListPlotと同じ機能を持つ:
ListPolarPlot[Range[0, 10, 0.2]]グラフィックスは二次的出力として表示されるものではなくなったので,DisplayTogetherの代りにShowが使えるようになった:
Show[Plot[x, {x, 0, 1}], Plot[x ^ 2, {x, 0, 1}]]グラフィックスは二次的出力として表示されるものではなくなったので,DisplayTogetherArrayの代りにGraphicsGridが使えるようになった:
GraphicsGrid[Table[DensityPlot[Sin[x + a]Cos[y + b], {x, 0, Pi}, {y, 0, Pi}], {a, 0, 2}, {b, 0, 2}]]data = RealDigits[N[Pi]][[1]];
Graphics[{Inset[#, {#, data[[#]]}]}& /@ Range@Length@data, Axes -> True, AxesOrigin -> {0, 0}]data = RealDigits[N[Pi]][[1]];
Graphics[{PointSize[.015], Point[{#, data[[#]]}], Inset[#, Scaled[{.015, 0}, {#, data[[#]]}], Left]}& /@ Range@Length@data, Axes -> True, AxesOrigin -> {0, 0}]Show[ListPlot[Range[10]], Plot[x + Sin[x], {x, 0, 10}]]指定された関数によりスケールされた座標付きのプロットを表示する:
ParametricPlot[{Cos[t], ArcSin[Sin[t]]}, {t, 0, Pi}]指定された関数によりスケールされた座標付きのリストプロットを表示する:
ListPlot[Table[{x, ArcSin[Sin[x]]}, {x, 0, π, .025π}]]SkewGraphicsおよびTransformGraphicsの機能が,組込みのMathematicaカーネル関数GeometricTransformationで利用できるようになった:
Plot[Sin[x], {x, 0, 2Pi}] /. Graphics[gr_, opts___] :> Graphics[GeometricTransformation[gr, {{1, 1}, {0, 1}}], opts]Histogramが組込みのMathematica関数になった:
Histogram[{.9, .0, .2, .8, .6, .9, .6, .9, .6, .3}, ChartStyle -> Red]BarChartが組込みのMathematica関数になった:
BarChart[Range[3], ChartLabels -> Range[3], ChartStyle -> Red]PercentileBarChartの機能がBarChartで利用できるようになった:
BarChart[{{1, -3, 4, 5, 2, 3}, {3, 6, 4, 3, 0, 0}}//Transpose, ChartLayout -> "Percentile", ChartStyle -> {Red, Blue}]StackedBarChartの機能がBarChartのChartLayoutを使って利用できるようになった:
BarChart[{{1, -3, 4, 5, 2, 3}, {3, 6, 4, 3, 0, 0}} // Transpose, ChartLayout -> "Stacked", ChartStyle -> {Red, Blue}]GeneralizedBarChartは以下の定義で置き換えることができる:
GeneralizedBarChart[ll__, opts___ ? OptionQ] := Module[{d0, a, b, hor = (BarOrientation /. Flatten@{opts}) === Horizontal}, Graphics[{EdgeForm[Black], Table[{d0, a, b} = {ll}[[i, j]];{Hue[.6(i - 1) / (Length@{ll} - 1)], If[hor, Rectangle[{0, d0 - b / 2}, {a, d0 + b / 2}], Rectangle[{d0 - b / 2, 0}, {d0 + b / 2, a}]]}, {i, Length@{ll}}, {j, Length@{ll}[[i]]}]}, FilterRules[{opts}, Options[Graphics]]]]
GeneralizedBarChart[{{1, 3, .2}, {4, 9, 1}, {2.1, -6, .5}}, {{3, 5, .5}, {1.5, -2, 1}, {-.4, 2, .5}}, AspectRatio -> 1 / GoldenRatio, Axes -> True, BarOrientation -> Horizontal]PieChartが組込みのMathematica関数になった:
PieChart[Range[4], ChartLabels -> Range[4], ColorFunction -> (Hue[Rescale[#, {0, 1}, {0, 3 / 4}]]&), SectorOrigin -> 0]Graphics`Graphics`のErrorListPlotがErrorBarプロットパッケージに含まれるようになった:
ErrorListPlotの機能を使うためには,ErrorBarPlots`をロードする:
<<ErrorBarPlots`;
ErrorListPlot[{{1, 0.2}, {2, 0.3}, {1.5, 0.1}, {0.8, 0.25}}]もとのパッケージは,Web(library.wolfram.co.jp/infocenter/MathSource/6808)から利用できるようになっている.