| |
- createBarGraphPickle(filename, sheet_selected, figure_dict)
- Writes information about a bar graph to a pickle file
:param: filename - File path of the pickle file to be written to.
:param: sheet_selected - The name of the workbook sheet that was selected when this graph was created.
:param: figure_dict - Dict containing configuration information about this graph.
- createBoxGraphPickle(filename, sheet_selected, figure_dict)
- Writes information about a box graph to a pickle file
:param: filename - File path of the pickle file to be written to.
:param: sheet_selected - The name of the workbook sheet that was selected when this graph was created.
:param: figure_dict - Dict containing configuration information about this graph.
- createDictEntriesForUnspecifiedOptions(figure_dict)
- Populates the figure dictonary with default values for unspecified options
- createScatterGraphPickle(filename, sheet_selected, figure_dict)
- Writes information about a scatter graph to a pickle file
:param: filename - File path of the pickle file to be written to.
:param: sheet_selected - The name of the workbook sheet that was selected when this graph was created.
:param: figure_dict - Dict containing configuration information about this graph.
- createTemplatePickle(filename, template_dict)
- Creates a template pickle file with information specified in template_dict.
:param: filename - The file path for the pickle file to be written to.
:param: template_dict - Dict containing template information.
- getDataFromPickle(filename)
- Fetches the data contained in a pickle file at file path filename.
:param: filename - The path to the pickle file to be read.
:return: Dictionary containing the data stored in the pickle file.
|