def test_parallel_axes_3d_sorted(_3d_grid_archive): plt.figure(figsize=(8, 6)) parallel_axes_plot(_3d_grid_archive, sort_archive=True)
def test_parallel_axes_3d_vertical_cbar(_3d_grid_archive): plt.figure(figsize=(8, 6)) parallel_axes_plot(_3d_grid_archive, cbar_orientation='vertical')
def test_parallel_axes_3d_width2_alpha2(_3d_grid_archive): plt.figure(figsize=(8, 6)) parallel_axes_plot(_3d_grid_archive, linewidth=2.0, alpha=0.2)
def test_parallel_axes_3d_custom_objective_limits(_3d_grid_archive): plt.figure(figsize=(8, 6)) parallel_axes_plot(_3d_grid_archive, vmin=-2.0, vmax=-1.0)
def test_parallel_axes_3d_coolwarm_cmap(_3d_grid_archive): plt.figure(figsize=(8, 6)) parallel_axes_plot(_3d_grid_archive, cmap='coolwarm')
def test_parallel_axes_3d_custom_names(_3d_grid_archive): plt.figure(figsize=(8, 6)) parallel_axes_plot(_3d_grid_archive, bc_order=[(1, 'One'),(2, 'Two'),(0, 'Zero')])
def test_parallel_axes_3d_custom_order(_3d_grid_archive): plt.figure(figsize=(8, 6)) parallel_axes_plot(_3d_grid_archive, bc_order=[1,2,0])
def test_parallel_axes_3d_custom_ax(_3d_grid_archive): _, ax = plt.subplots(figsize=(8, 6)) parallel_axes_plot(_3d_grid_archive, ax=ax)
def test_parallel_axes_3d(_3d_grid_archive): plt.figure(figsize=(8, 6)) parallel_axes_plot(_3d_grid_archive)