Manufac
Manufac
@artem-kushal Do you have the time to re-sync this PR and resolve the merge conflicts? Thanks.
Ref: https://dev.to/maneetgoyal/using-apache-echarts-with-react-and-typescript-regression-transform-1o8p cc @maria-grigorieva
> Yes, I would like to add types! I think my preferred route is not to port to TypeScript, but rather provide type files included along side the JavaScript source...
Perhaps, because you are using: ``` rf.train( data.map((obj) => [obj.value]), data.map((obj) => [obj.score]), ); ``` instead of ``` rf.train( data.map((obj) => [obj.value]), data.map((obj) => obj.score), ); ``` ?