(self)
| 81 | """ |
| 82 | |
| 83 | def __init__(self): |
| 84 | self.overall = { |
| 85 | 'name': 'overall', |
| 86 | 'plots': [], |
| 87 | 'heading': [], |
| 88 | 'subheading': [], # "\n".join(subheading) |
| 89 | 'desc': [], # "\n".join(subheading) |
| 90 | 'table1_title': "", |
| 91 | 'table1': [], |
| 92 | 'table2_title': "", |
| 93 | 'table2': [] |
| 94 | } ### This is for overall description and comments about the data set |
| 95 | self.scatter_plot = { |
| 96 | 'name': 'scatter', |
| 97 | 'heading': 'Scatter Plot of each Continuous Variable against Target Variable', |
| 98 | 'plots': [], |
| 99 | 'subheading': [], # "\n".join(subheading) |
| 100 | 'desc': [] # "\n".join(desc) |
| 101 | } ##### This is for description and images for scatter plots ### |
| 102 | self.pair_scatter = { |
| 103 | 'name': 'pair-scatter', |
| 104 | 'heading': 'Pairwise Scatter Plot of each Continuous Variable against other Continuous Variables', |
| 105 | 'plots': [], |
| 106 | 'subheading': [], # "\n".join(subheading) |
| 107 | 'desc': [] # "\n".join(desc) |
| 108 | } ##### This is for description and images for pairs of scatter plots ### |
| 109 | self.dist_plot = { |
| 110 | 'name': 'distribution', |
| 111 | 'heading': 'Distribution Plot of Target Variable', |
| 112 | 'plots': [], |
| 113 | 'subheading': [], # "\n".join(subheading) |
| 114 | 'desc': [] # "\n".join(desc) |
| 115 | } ##### This is for description and images for distribution plots ### |
| 116 | self.pivot_plot = { |
| 117 | 'name': 'pivot', |
| 118 | 'heading': 'Pivot Plots of all Continuous Variable', |
| 119 | 'plots': [], |
| 120 | 'subheading': [], # "\n".join(subheading) |
| 121 | 'desc': [] # "\n".join(desc) |
| 122 | } ##### This is for description and images for pivot plots ### |
| 123 | self.violin_plot = { |
| 124 | 'name': 'violin', |
| 125 | 'heading': 'Violin Plots of all Continuous Variable', |
| 126 | 'plots': [], |
| 127 | 'subheading': [], # "\n".join(subheading) |
| 128 | 'desc': [] # "\n".join(desc) |
| 129 | } ##### This is for description and images for violin plots ### |
| 130 | self.heat_map = { |
| 131 | 'name': 'heatmap', |
| 132 | 'heading': 'Heatmap of all Continuous Variables for target Variable', |
| 133 | 'plots': [], |
| 134 | 'subheading': [], # "\n".join(subheading) |
| 135 | 'desc': [] # "\n".join(desc) |
| 136 | } ##### This is for description and images for heatmaps ### |
| 137 | self.bar_plot = { |
| 138 | 'name': 'bar', |
| 139 | 'heading': 'Bar Plots of Average of each Continuous Variable by Target Variable', |
| 140 | 'plots': [], |
nothing calls this directly
no outgoing calls
no test coverage detected