Side
Represents a single side of a tooth with relevant features.
Attributes:
Name | Type | Description |
---|---|---|
furcationbaseline |
Optional[int]
|
Baseline furcation measurement, if available. |
side |
int
|
Identifier for the side of the tooth. |
pdbaseline |
Optional[int]
|
Baseline probing depth measurement. |
recbaseline |
Optional[int]
|
Baseline recession measurement. |
plaque |
Optional[int]
|
Plaque presence status. |
bop |
Optional[int]
|
Bleeding on probing status. |
Example
side_1 = Side(
furcationbaseline=1,
side=1,
pdbaseline=2,
recbaseline=2,
plaque=1,
bop=1
)
Source code in periomod/base.py
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 |
|