polykin.distributions¤
DataDistribution ¤
Arbitrary numerical chain-length distribution, defined by chain size and pdf data.
PARAMETER | DESCRIPTION |
---|---|
size_data
|
Chain length or molar mass data.
TYPE:
|
pdf_data
|
Distribution data.
TYPE:
|
kind
|
Kind of distribution.
TYPE:
|
sizeasmass
|
Switch size input between chain-length (if
TYPE:
|
M0
|
Molar mass of the repeating unit, \(M_0\). Unit = kg/mol.
TYPE:
|
name
|
Name.
TYPE:
|
Source code in src/polykin/distributions/datadistribution.py
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 86 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 |
|
cdf ¤
cdf(
size: Union[float, FloatArrayLike],
kind: Literal["number", "mass"] = "mass",
sizeasmass: bool = False,
) -> Union[float, FloatArray]
Evaluate the cumulative distribution function:
or
where \(m\) is the order (0: number, 1: mass).
PARAMETER | DESCRIPTION |
---|---|
size
|
Chain length or molar mass.
TYPE:
|
kind
|
Kind of distribution.
TYPE:
|
sizeasmass
|
Switch size input between chain-length (if
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
float | FloatArray
|
Cumulative probability. |
Source code in src/polykin/distributions/base.py
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 |
|
fit ¤
fit(
dist_class: Union[
type[Flory],
type[Poisson],
type[LogNormal],
type[SchulzZimm],
],
dim: int = 1,
display_table: bool = True,
) -> Optional[
Union[AnalyticalDistribution, MixtureDistribution]
]
Fit (deconvolute) a DataDistribution
into a linear combination of
AnalyticalDistribution
(s).
PARAMETER | DESCRIPTION |
---|---|
dist_class
|
Type of distribution to be used in the fit.
TYPE:
|
dim
|
Number of individual components to use in the fit.
TYPE:
|
display_table
|
Option to display results table with information about individual components.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
AnalyticalDistribution | MixtureDistribution | None
|
If fit successful, it returns the fitted distribution. |
Source code in src/polykin/distributions/datadistribution.py
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 |
|
pdf ¤
pdf(
size: Union[float, FloatArrayLike],
kind: Literal["number", "mass", "gpc"] = "mass",
sizeasmass: bool = False,
) -> Union[float, FloatArray]
Evaluate the probability density function, \(p(k)\).
PARAMETER | DESCRIPTION |
---|---|
size
|
Chain length or molar mass.
TYPE:
|
kind
|
Kind of distribution.
TYPE:
|
sizeasmass
|
Switch size input between chain-length (if
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
float | FloatArray
|
Probability density. |
Source code in src/polykin/distributions/base.py
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 |
|
plot ¤
plot(
kind: Union[
Literal["number", "mass", "gpc"],
list[Literal["number", "mass", "gpc"]],
] = "mass",
sizeasmass: bool = False,
xscale: Literal["auto", "linear", "log"] = "auto",
xrange: Union[tuple[float, float], None] = None,
cdf: Literal[0, 1, 2] = 0,
title: Optional[str] = None,
axes: Optional[list[Axes]] = None,
return_objects: bool = False,
) -> Optional[tuple[Optional[Figure], list[Axes]]]
Plot the chain-length distribution.
PARAMETER | DESCRIPTION |
---|---|
kind
|
Kind(s) of distribution.
TYPE:
|
sizeasmass
|
Switch size input between chain-length (if
TYPE:
|
xscale
|
x-axis scale.
TYPE:
|
xrange
|
x-axis range.
TYPE:
|
cdf
|
y-axis where cdf is displayed. If
TYPE:
|
title
|
Title of plot. If
TYPE:
|
axes
|
Matplotlib Axes object.
TYPE:
|
return_objects
|
If
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
tuple[Figure | None, list[Axes]] | None
|
Figure and Axes objects if return_objects is |
Source code in src/polykin/distributions/base.py
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 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 |
|
Examples¤
from polykin.distributions import DataDistribution
from polykin.distributions import sample_mmd
a = DataDistribution(
sample_mmd['size_data'], sample_mmd['pdf_data'],
kind=sample_mmd['kind'], name='sample-X')
print(a.Mz)
print(a.pdf(a.DPn))
print(a.cdf([a.DPn, a.DPw, a.DPz]))
20888.785519999517
0.0008846266163450458
[0.20291017 0.9111195 0.98380265]