Plotting
Miscellaneous functions for plotting DFEs.
plot_biv_dfe(gammax, gammay, sel_dist, params, logweight=True, ax=None, xlabel='$\\gamma_1$', ylabel='$\\gamma_2$', cmap='gray_r', colorbar=True, vmin=0, clip_on=True)
Plot a bivariate DFE (for negative gammas).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
gammax
|
array - like
|
Grids of gamma values to plot with. Non-negative values are discarded. |
required |
gammay
|
array - like
|
Grids of gamma values to plot with. Non-negative values are discarded. |
required |
sel_dist
|
callable
|
Bivariate probability distribution, taking arguments (xx, yy, params). |
required |
params
|
array - like
|
Parameters for sel_dist. |
required |
logweight
|
bool
|
If True, plotted values are weighted by x and y, so that the total probability within each cell is plotted rather than the probability density. Defaults to True. |
True
|
ax
|
Axes
|
Matplotlib axes to plot into. If None, plt.gca() is used. Defaults to None. |
None
|
xlabel
|
str
|
Labels for x and y axes. Defaults to '$\gamma_1$'. |
'$\\gamma_1$'
|
ylabel
|
str
|
Labels for x and y axes. Defaults to '$\gamma_2$'. |
'$\\gamma_2$'
|
cmap
|
str
|
Colormap to plot with. Defaults to 'gray_r'. |
'gray_r'
|
colorbar
|
bool
|
If True, include a colorbar alongside the plot. Defaults to True. |
True
|
vmin
|
float
|
Values below this will be colored white. Defaults to 0. |
0
|
clip_on
|
bool
|
If False, plot will extend outside of axes. Defaults to True. |
True
|
Returns:
| Name | Type | Description |
|---|---|---|
ax |
Axes
|
The axes with the plot. |
Note
See https://matplotlib.org/2.0.2/users/colormaps.html for colormap tips.
Source code in dadi/DFE/Plotting.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | |
plot_biv_point_pos_dfe(gammax, gammay, sel_dist, params, rho=0, logweight=True, xlabel='$\\gamma_1$', ylabel='$\\gamma_2$', cmap='gray_r', fignum=None, colorbar=True, vmin=0)
Plot a bivariate DFE (for negative gammas) with a positive point mass.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
gammax
|
array - like
|
Grids of gamma values to plot with. Non-negative values are discarded. |
required |
gammay
|
array - like
|
Grids of gamma values to plot with. Non-negative values are discarded. |
required |
sel_dist
|
callable
|
Bivariate probability distribution, taking arguments (xx, yy, params). |
required |
params
|
array - like
|
Parameters for sel_dist and positive selection. The last four parameters are assumed to be:
Earlier arguments are assumed to be for the continuous bivariate distribution. |
required |
rho
|
float
|
Correlation coefficient used to connect negative and positive components of DFE. Defaults to 0. |
0
|
logweight
|
bool
|
If True, plotted values are weighted by x and y, so that the total probability within each cell is plotted rather than the probability density. Defaults to True. |
True
|
xlabel
|
str
|
Labels for x and y axes. Defaults to '$\gamma_1$'. |
'$\\gamma_1$'
|
ylabel
|
str
|
Labels for x and y axes. Defaults to '$\gamma_2$'. |
'$\\gamma_2$'
|
cmap
|
str
|
Colormap to plot with. Defaults to 'gray_r'. |
'gray_r'
|
fignum
|
int
|
Figure number to use. If None or the figure does not exist, a new one will be created. Defaults to None. |
None
|
colorbar
|
bool
|
If True, plot a scale bar for probability. Defaults to True. |
True
|
vmin
|
float
|
Values below this will be colored white. Defaults to 0. |
0
|
Returns:
| Name | Type | Description |
|---|---|---|
fig |
Figure
|
The figure for the plot. |
Notes
-
You might need to adjust subplot parameters using
fig.subplots_adjustafter plotting to see all labels, etc. -
See https://matplotlib.org/2.0.2/users/colormaps.html for colormap tips.
Source code in dadi/DFE/Plotting.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 | |