File tree Expand file tree Collapse file tree 2 files changed +45
-0
lines changed Expand file tree Collapse file tree 2 files changed +45
-0
lines changed Original file line number Diff line number Diff line change
1
+ # MLJOpenML.jl
2
+
3
+ | Linux | Coverage |
4
+ | :-----------: | :------: |
5
+ | [ ![ Build status] ( https://github.com/JuliaAI/MLJOpenML.jl/workflows/CI/badge.svg )] ( https://github.com/JuliaAI/MLJOpenML.jl/actions ) | [ ![ codecov.io] ( http://codecov.io/github/JuliaAI/MLJOpenML.jl/coverage.svg?branch=master )] ( http://codecov.io/github/JuliaAI/MLJOpenML.jl?branch=master ) |
6
+
7
+ A package providing integration of [ OpenML] ( https://www.openml.org ) with the
8
+ [ MLJ] ( https://alan-turing-institute.github.io/MLJ.jl/dev/ ) machine
9
+ learning framework.
10
+
11
+
12
+ ## Installation
13
+
14
+ ``` julia
15
+ using Pkg
16
+ Pkg. add (" MLJOpenML" )
17
+ ```
18
+
19
+ ## Sample usage
20
+
21
+ Load the iris data set from OpenML:
22
+
23
+ ``` julia
24
+ using MLJOpenML
25
+ rowtable = MLJOpenML. load (61 )
26
+ ```
27
+
28
+ Convert to a ` DataFrame ` :
29
+
30
+ ```
31
+ Pkg.add("DataFrames")
32
+ using DataFrames
33
+ df = DataFrame(rowtable)
34
+ ```
35
+
36
+ ## Documentation
37
+
38
+ Documentation is provided in the [ OpenML
39
+ Integration] ( https://alan-turing-institute.github.io/MLJ.jl/dev/openml_integration/ )
40
+ section of the
41
+ [ MLJManual] ( https://alan-turing-institute.github.io/MLJ.jl/dev/ )
42
+
43
+
Original file line number Diff line number Diff line change @@ -100,6 +100,8 @@ example:
100
100
using DataFrames
101
101
rowtable = MLJOpenML.load(61);
102
102
df = DataFrame(rowtable);
103
+
104
+ using MLJ
103
105
df2 = coerce(df, :class=>Multiclass)
104
106
```
105
107
"""
You can’t perform that action at this time.
0 commit comments