Evidence_diamondsDiamonds dataset.
This is the diamonds dataset distributed with ggplot2.
The type for diamond observations. The 10 variables are as follows in order.
val carat : (obs, float) Evidence.Var.tcarat is the diamond weight.
val cut : (obs, string) Evidence.Var.tcut is the cut quality, one of "Fair", "Good", "Very Good", "Premium", "Ideal".
val color : (obs, string) Evidence.Var.tcolor is the diamond color from "D" (best) to "J" (worst).
val clarity : (obs, string) Evidence.Var.tclarity is a measurement of how clear the diamond is, one of ("I1" (worst), "SI2", "SI1", "VS2", "VS1", "VVS2", "VVS1", "IF" (best).
val depth : (obs, float) Evidence.Var.tdepth is the total depth percentage z / mean(x, y) = 2 * z / (x + y).
val table : (obs, float) Evidence.Var.ttable is the width of top of diamond relative to widest point.
val price : (obs, int) Evidence.Var.tprice is the diamond price in USD.
val x : (obs, float) Evidence.Var.tx is the diamond length in mm.
val y : (obs, float) Evidence.Var.ty is the diamond width in mm.
val z : (obs, float) Evidence.Var.ty is the diamond depth in mm.
val dataset : obs Evidence.Dataset.tdataset is a list of 53940 diamond observations.