matplotlib 3d axes ticks, labels, and LaTeX

后端 未结 2 1634
终归单人心
终归单人心 2021-02-01 14:21

I am running this sample script, with the following modifications:

import matplotlib as mpl
from mpl_toolkits.mplot3d import Axes3D
import numpy as np
import mat         


        
2条回答
  •  闹比i
    闹比i (楼主)
    2021-02-01 15:14

    The for loop is not necessary, to change the size of your ticks you can use:

        ax.zaxis.set_tick_params(labelsize=10)
    

提交回复
热议问题