#! /usr/bin/env python3 # def graphics_test ( ): #*****************************************************************************80 # ## graphics_test tests the graphics examples. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 03 May 2019 # # Author: # # John Burkardt # import platform print ( '' ) print ( 'graphics_test' ) print ( ' Python version: %s' % ( platform.python_version ( ) ) ) print ( ' Test the graphics examples.' ) from album_bar import album_bar from alphabet_binary_tree import alphabet_binary_tree from automobile_scatter import automobile_scatter from basketball_barh import basketball_barh from brownian_2d_plot import brownian_2d_plot from brownian_animation import brownian_animation from bulgaria_plot import bulgaria_plot from caffeine_scatter import caffeine_scatter from chain_letter_dendrogram import chain_letter_dendrogram from circle_scatters import circle_scatters from corkscrew_plot3d import corkscrew_plot3d from corvette_scatter import corvette_scatter from drug_dosage_plots import drug_dosage_plots from genealogy_tree import genealogy_tree from geyser_bar import geyser_bar from geyser_histogram import geyser_histogram from geyser_scatter import geyser_scatter from grid_fill_contour import grid_fill_contour from grid_surface import grid_surface from insect_scatter3d import insect_scatter3d from iris_decision_tree import iris_decision_tree from iris_subplots import iris_subplots from least_squares_plots import least_squares_plots from lissajous_plot import lissajous_plot from lynx_plot import lynx_plot from mario_fill import mario_fill from mexican_hat_surface import mexican_hat_surface from mod_bar3d import mod_bar3d from network_graph import network_graph from nile_histogram import nile_histogram from nile_plot import nile_plot from ninety_histogram import ninety_histogram from orbital_fill_contour import orbital_fill_contour from predator_plot3d import predator_plot3d from president_heights_bar import president_heights_bar from president_heights_barh import president_heights_barh from president_heights_histogram import president_heights_histogram from price_plots import price_plots from random_scatter import random_scatter from schoolyear_barh import schoolyear_barh from snowfall_histogram import snowfall_histogram from snowfall_plot import snowfall_plot from snowfall_smoothed_plot import snowfall_smoothed_plot from temperature_scatter import temperature_scatter from temperature_scatter3d import temperature_scatter3d from track_bar import track_bar from volcano_fill_contour import volcano_fill_contour from volcano_line_contour import volcano_line_contour from volcano_surface import volcano_surface from web_digraph import web_digraph album_bar ( ) alphabet_binary_tree ( ) automobile_scatter ( ) basketball_barh ( ) brownian_2d_plot ( ) brownian_animation ( ) bulgaria_plot ( ) caffeine_scatter ( ) chain_letter_dendrogram ( ) circle_scatters ( ) corkscrew_plot3d ( ) corvette_scatter ( ) drug_dosage_plots ( ) genealogy_tree ( ) geyser_bar ( ) geyser_histogram ( ) geyser_scatter ( ) grid_fill_contour ( ) grid_surface ( ) insect_scatter3d ( ) iris_decision_tree ( ) iris_subplots ( ) least_squares_plots ( ) lissajous_plot ( ) lynx_plot ( ) mario_fill ( ) mexican_hat_surface ( ) mod_bar3d ( ) network_graph ( ) nile_histogram ( ) nile_plot ( ) ninety_histogram ( ) orbital_fill_contour ( ) predator_plot3d ( ) president_heights_bar ( ) president_heights_barh ( ) president_heights_histogram ( ) price_plots ( ) random_scatter ( ) schoolyear_barh ( ) snowfall_histogram ( ) snowfall_plot ( ) snowfall_smoothed_plot ( ) temperature_scatter ( ) temperature_scatter3d ( ) track_bar ( ) volcano_fill_contour ( ) volcano_line_contour ( ) volcano_surface ( ) web_digraph ( ) # # Terminate. # print ( '' ) print ( 'graphics_test:' ) print ( ' Normal end of execution.' ) return if ( __name__ == '__main__' ): from timestamp import timestamp timestamp ( ) graphics_test ( ) timestamp ( )