From 1e22474bc479703e0805b6b79e26f113bde1a868 Mon Sep 17 00:00:00 2001 From: David Hendriks <davidhendriks93@gmail.com> Date: Mon, 20 Apr 2020 12:47:32 +0100 Subject: [PATCH] updated plot functions --- binarycpython/utils/plot_functions.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/binarycpython/utils/plot_functions.py b/binarycpython/utils/plot_functions.py index af5649f30..e4040a5cc 100644 --- a/binarycpython/utils/plot_functions.py +++ b/binarycpython/utils/plot_functions.py @@ -1,12 +1,19 @@ """ -Module that contains plotting routines for single systems. +Module that contains Functionality to plot different aspect of (binary) systems. -The idea to do this is to provide the user with some quick -commands to plot the evolution of a system +Different routines are defined here to plot orbits, masses, angular momenta etc. + +Its split up into logging string, parsing functions, plotting functions, +and one master function called plot_system that will provide ease of use. + +All the loose components here can ofcourse be used in other routines if you want. There is no preloaded matplotlib rc, you should do that yourself TODO: This module is not finished yet. +TODO: Make modules for single system +TODO: Put all the plotting functions in here + """ import pandas as pd @@ -26,7 +33,6 @@ from david_phd_functions.plotting.plot_functions import ( plot_HR_diagram, ) - # Define the custom_logging_strings. # These are kept to the minimum necessary for each plotting routine. -- GitLab