Skip to content

Commit 4a17eed

Browse files
jkbradleymengxr
authored andcommitted
[SPARK-5867] [SPARK-5892] [doc] [ml] [mllib] Doc cleanups for 1.3 release
For SPARK-5867: * The spark.ml programming guide needs to be updated to use the new SQL DataFrame API instead of the old SchemaRDD API. * It should also include Python examples now. For SPARK-5892: * Fix Python docs * Various other cleanups BTW, I accidentally merged this with master. If you want to compile it on your own, use this branch which is based on spark/branch-1.3 and cherry-picks the commits from this PR: [https://github.com/jkbradley/spark/tree/doc-review-1.3-check] CC: mengxr (ML), davies (Python docs) Author: Joseph K. Bradley <[email protected]> Closes #4675 from jkbradley/doc-review-1.3 and squashes the following commits: f191bb0 [Joseph K. Bradley] small cleanups e786efa [Joseph K. Bradley] small doc corrections 6b1ab4a [Joseph K. Bradley] fixed python lint test 946affa [Joseph K. Bradley] Added sample data for ml.MovieLensALS example. Changed spark.ml Java examples to use DataFrames API instead of sql() da81558 [Joseph K. Bradley] Merge remote-tracking branch 'upstream/master' into doc-review-1.3 629dbf5 [Joseph K. Bradley] Updated based on code review: * made new page for old migration guides * small fixes * moved inherit_doc in python b9df7c4 [Joseph K. Bradley] Small cleanups: toDF to toDF(), adding s for string interpolation 34b067f [Joseph K. Bradley] small doc correction da16aef [Joseph K. Bradley] Fixed python mllib docs 8cce91c [Joseph K. Bradley] GMM: removed old imports, added some doc 695f3f6 [Joseph K. Bradley] partly done trying to fix inherit_doc for class hierarchies in python docs a72c018 [Joseph K. Bradley] made ChiSqTestResult appear in python docs b05a80d [Joseph K. Bradley] organize imports. doc cleanups e572827 [Joseph K. Bradley] updated programming guide for ml and mllib
1 parent d3dfebe commit 4a17eed

30 files changed

Lines changed: 1940 additions & 290 deletions
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
0::Movie 0::Romance|Comedy
2+
1::Movie 1::Action|Anime
3+
2::Movie 2::Romance|Thriller
4+
3::Movie 3::Action|Romance
5+
4::Movie 4::Anime|Comedy
6+
5::Movie 5::Action|Action
7+
6::Movie 6::Action|Comedy
8+
7::Movie 7::Anime|Comedy
9+
8::Movie 8::Comedy|Action
10+
9::Movie 9::Anime|Thriller
11+
10::Movie 10::Action|Anime
12+
11::Movie 11::Action|Anime
13+
12::Movie 12::Anime|Comedy
14+
13::Movie 13::Thriller|Action
15+
14::Movie 14::Anime|Comedy
16+
15::Movie 15::Comedy|Thriller
17+
16::Movie 16::Anime|Romance
18+
17::Movie 17::Thriller|Action
19+
18::Movie 18::Action|Comedy
20+
19::Movie 19::Anime|Romance
21+
20::Movie 20::Action|Anime
22+
21::Movie 21::Romance|Thriller
23+
22::Movie 22::Romance|Romance
24+
23::Movie 23::Comedy|Comedy
25+
24::Movie 24::Anime|Action
26+
25::Movie 25::Comedy|Comedy
27+
26::Movie 26::Anime|Romance
28+
27::Movie 27::Anime|Anime
29+
28::Movie 28::Thriller|Anime
30+
29::Movie 29::Anime|Romance
31+
30::Movie 30::Thriller|Romance
32+
31::Movie 31::Thriller|Romance
33+
32::Movie 32::Comedy|Anime
34+
33::Movie 33::Comedy|Comedy
35+
34::Movie 34::Anime|Anime
36+
35::Movie 35::Action|Thriller
37+
36::Movie 36::Anime|Romance
38+
37::Movie 37::Romance|Anime
39+
38::Movie 38::Thriller|Romance
40+
39::Movie 39::Romance|Comedy
41+
40::Movie 40::Action|Anime
42+
41::Movie 41::Comedy|Thriller
43+
42::Movie 42::Comedy|Action
44+
43::Movie 43::Thriller|Anime
45+
44::Movie 44::Anime|Action
46+
45::Movie 45::Comedy|Romance
47+
46::Movie 46::Comedy|Action
48+
47::Movie 47::Romance|Comedy
49+
48::Movie 48::Action|Comedy
50+
49::Movie 49::Romance|Romance
51+
50::Movie 50::Comedy|Romance
52+
51::Movie 51::Action|Action
53+
52::Movie 52::Thriller|Action
54+
53::Movie 53::Action|Action
55+
54::Movie 54::Romance|Thriller
56+
55::Movie 55::Anime|Romance
57+
56::Movie 56::Comedy|Action
58+
57::Movie 57::Action|Anime
59+
58::Movie 58::Thriller|Romance
60+
59::Movie 59::Thriller|Comedy
61+
60::Movie 60::Anime|Comedy
62+
61::Movie 61::Comedy|Action
63+
62::Movie 62::Comedy|Romance
64+
63::Movie 63::Romance|Thriller
65+
64::Movie 64::Romance|Action
66+
65::Movie 65::Anime|Romance
67+
66::Movie 66::Comedy|Action
68+
67::Movie 67::Thriller|Anime
69+
68::Movie 68::Thriller|Romance
70+
69::Movie 69::Action|Comedy
71+
70::Movie 70::Thriller|Thriller
72+
71::Movie 71::Action|Comedy
73+
72::Movie 72::Thriller|Romance
74+
73::Movie 73::Comedy|Action
75+
74::Movie 74::Action|Action
76+
75::Movie 75::Action|Action
77+
76::Movie 76::Comedy|Comedy
78+
77::Movie 77::Comedy|Comedy
79+
78::Movie 78::Comedy|Comedy
80+
79::Movie 79::Thriller|Thriller
81+
80::Movie 80::Comedy|Anime
82+
81::Movie 81::Comedy|Anime
83+
82::Movie 82::Romance|Anime
84+
83::Movie 83::Comedy|Thriller
85+
84::Movie 84::Anime|Action
86+
85::Movie 85::Thriller|Anime
87+
86::Movie 86::Romance|Anime
88+
87::Movie 87::Thriller|Thriller
89+
88::Movie 88::Romance|Thriller
90+
89::Movie 89::Action|Anime
91+
90::Movie 90::Anime|Romance
92+
91::Movie 91::Anime|Thriller
93+
92::Movie 92::Action|Comedy
94+
93::Movie 93::Romance|Thriller
95+
94::Movie 94::Thriller|Comedy
96+
95::Movie 95::Action|Action
97+
96::Movie 96::Thriller|Romance
98+
97::Movie 97::Thriller|Thriller
99+
98::Movie 98::Thriller|Comedy
100+
99::Movie 99::Thriller|Romance

0 commit comments

Comments
 (0)