Re: old vs new(V7) BarChart3D
- To: mathgroup at smc.vnet.net
- Subject: [mg104376] Re: old vs new(V7) BarChart3D
- From: Albert Retey <awnl at gmx-topmail.de>
- Date: Thu, 29 Oct 2009 02:59:15 -0500 (EST)
- References: <hc6g9p$5jt$1@smc.vnet.net> <hc92hc$eh9$1@smc.vnet.net>
Hi,
> Of course alteratively you can just create Cuboids from your data, which
> will look exactly as your old BarChart, but will be some extra effort,
> but probably not too much...
Actually it is almost shorter than to load the BarCharts` package:
w = 0.25;
s = 4;
Graphics3D[
Table[
Cuboid[{x - w, y - w, 0}, {x + w, y + w, s*binorm[[x, y]]}],
{x, Dimensions[binorm][[1]]}, {y, Dimensions[binorm][[2]]}
],
Boxed -> False, PlotLabel -> "Field Study",
BaseStyle -> {Medium, FontFamily -> "Arial"}
]
hth,
albert