ShapeCalc
ZinggPlot(feature, models, mean=False, n=30, ax=None, marker=None)
summary
| Parameters: |
|
|---|
| Returns: |
|
|---|
Source code in MinDet/Process/shape_calc.py
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 | |
split_at(string, char, n)
Splits string into two at the nth occurence of the character specified.
Input
string - string to be split into two char - character to split at n - the occurrence of character at which splitting should occur.
Returns
The two ends of the string split at the specified position.
Source code in MinDet/Process/shape_calc.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | |