DSI | R Documentation |
This function calculates the Disease Severity Index (DSI) based on the provided unit, class, and maximum class value. The DSI is computed by aggregating the classes, calculating weights by multiplying the frequency of each class by the class itself, and then dividing the sum of these weights by the product of the total number of entries and the maximum class value, then multiplying by 100.
DSI(unit, class, max)
unit |
A vector representing the units. |
class |
A vector representing the classes corresponding to the units. |
max |
A numeric value representing the maximum possible class value. |
Returns a single numeric value representing the DSI.
Other Disease quantification:
CompMuCens()
,
DSI2()
# Example usage:
unit <- c(1, 2, 3, 4, 5, 6)
class <- c(1, 2, 1, 2, 3, 1)
max <- 3
DSI(unit, class, max)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.