Loads in a JSAT dataset as a RegressionDataSet. An exception will be thrown if the original dataset in the file was not a RegressionDataSet. @param inRaw the input stream, caller should buffer it @return a RegressionDataSet object @throws IOException @throws ClassCastException if th
(InputStream inRaw)
| 533 | * @throws ClassCastException if the original dataset was a not a RegressionDataSet |
| 534 | */ |
| 535 | public static RegressionDataSet loadRegression(InputStream inRaw) throws IOException |
| 536 | { |
| 537 | return (RegressionDataSet) load(inRaw); |
| 538 | } |
| 539 | |
| 540 | /** |
| 541 | * This loads a JSAT dataset from an input stream, and will not do any of |