Plot Options #python3.6 #matplotlib.pyplot

import matplotlib.pyplot as plt

from mpl_toolkits.mplot3d import Axes3D  #3D view

 

fig = plt.figure()

ax = plt.axes([left, bottom, width, height])

ax = plt.add_subplot(111)

ax = plt.add_subplot(111, projection='3d') #3D view

 

# plot styles

ax.plot( x, y )

ax.scatter( x, y, s=MarkerSize, c=ColorData, marker=Marker, cmap=ColorMap, norm=None, vmin=CLim, vmax=CLim, alpha=Transparency, linewidths=None, verts=None, edgecolors = EdgeColorData, hold=None, data=None )

ax.plot3D( x, y, z )

ax.contour3D( x, y, z )

ax.contourf3D( x, y, z )

ax.plot_wireframe( x, y, z )

ax.plot_surface( x, y, z )

 

# figure settings

ax.set_aspect( 'equal' )

 

ax.set_xlim(-1, 1)

ax.set_ylim(-1 ,1)

 

ax.set_xlabel( 'xlabel' )

ax.set_ylabel( 'xlabel' )

 

ax.grid( 'off' )