Skip to content

Instantly share code, notes, and snippets.

@mdfarragher
Created November 7, 2019 14:23
Show Gist options
  • Save mdfarragher/a3d11466453532769e3e10c3a5c74e95 to your computer and use it in GitHub Desktop.
Save mdfarragher/a3d11466453532769e3e10c3a5c74e95 to your computer and use it in GitHub Desktop.
/// <summary>
/// The HouseBlockData class holds one single housing block data record.
/// </summary>
public class HouseBlockData
{
[LoadColumn(0)] public float Longitude { get; set; }
[LoadColumn(1)] public float Latitude { get; set; }
[LoadColumn(2)] public float HousingMedianAge { get; set; }
[LoadColumn(3)] public float TotalRooms { get; set; }
[LoadColumn(4)] public float TotalBedrooms { get; set; }
[LoadColumn(5)] public float Population { get; set; }
[LoadColumn(6)] public float Households { get; set; }
[LoadColumn(7)] public float MedianIncome { get; set; }
[LoadColumn(8)] public float MedianHouseValue { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment