ObservationDataDb

data class ObservationDataDb(var id: Int = obsCounter++, var context: String? = null, var subject: String? = null, var response: String = "", var obsNum: Int = -1, var obsValue: Double = Double.NaN) : DbTableData(source)

Parameters

id

the identifier for the observation

context

a context for interpreting the data.

subject

the subject (or name) of the observation

response

the name of the response being observed

obsNum

an ordered numbering of the observations within the subject

obsValue

the value of the observation

Constructors

Link copied to clipboard
constructor(id: Int = obsCounter++, context: String? = null, subject: String? = null, response: String = "", obsNum: Int = -1, obsValue: Double = Double.NaN)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
var id: Int
Link copied to clipboard
var obsNum: Int
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard