Skip to content

Commit

Permalink
d Update README.
Browse files Browse the repository at this point in the history
  • Loading branch information
markrogoyski committed Oct 22, 2020
1 parent 040a104 commit 270e8e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1585,10 +1585,10 @@ $murders = $usArrests->getMurders(); // ['Alabama' => 13.2, 'Alask

// Data from Cereals (cereal)
$cereal = new SampleData\Cereal();
$cereals = $getCereals(); // ['B1', 'B2', 'B3', 'M1', 'M2', ... ]
$X = $getXData(); // [[0.002682755, 0.003370673, 0.004085942, ... ], [0.002781597, 0.003474863, 0.004191472, ... ], ... ]
$Y = $getYData(); // [[18373, 41.61500, 6.565000, ... ], [18536, 41.40500, 6.545000, ... ], ... ]
$Ysc = $getYscData(); // [[-0.1005049, 0.6265746, -1.1716630, ... ], [0.9233889, 0.1882929, -1.3185289, ... ], ... ]
$cereals = $cereal->getCereals(); // ['B1', 'B2', 'B3', 'M1', 'M2', ... ]
$X = $cereal->getXData(); // [[0.002682755, 0.003370673, 0.004085942, ... ], [0.002781597, 0.003474863, 0.004191472, ... ], ... ]
$Y = $cereal->getYData(); // [[18373, 41.61500, 6.565000, ... ], [18536, 41.40500, 6.545000, ... ], ... ]
$Ysc = $cereal->getYscData(); // [[-0.1005049, 0.6265746, -1.1716630, ... ], [0.9233889, 0.1882929, -1.3185289, ... ], ... ]
// Labeled data: getLabeledXData(), getLabeledYData(), getLabeledYscData()
```

Expand Down

0 comments on commit 270e8e6

Please sign in to comment.