1

I have a discrete 3D plot from which I want to remove the axes labels and values. To demonstrate what I need, lets consider an example from the Mathematica Documentation:

DiscretePlot3D[{PDF[MultivariatePoissonDistribution[3, {1, 1}], {t, u}], PDF[MultivariatePoissonDistribution[5, {2, 2}], {t, u}]}, {t, 0, 10}, {u, 0, 10}, ExtentSize -> Full],

i.e. see this link. This generates the following graph:

A Discrete 3D plot

I would like to completely remove the values from the image. The reason for this is since I would like to generate the numbers in Tikz for a LaTeX typeset. I am aware of the MateX library that exists for Mathematica. I have tried to use ImagePadding->1 but this has no effect.

Sid
  • 977
  • 1
  • 6
  • 15

1 Answers1

3

You can make the tick labels transparent and vanishingly small

DiscretePlot3D[{PDF[
   MultivariatePoissonDistribution[3, {1, 1}], {t, u}], 
  PDF[MultivariatePoissonDistribution[5, {2, 2}], {t, u}]}, {t, 0, 
  10}, {u, 0, 10}, ExtentSize -> Full,
  TicksStyle -> Directive[FontOpacity -> 0, FontSize -> 0]]

enter image description here

Jason B.
  • 68,381
  • 3
  • 139
  • 286