@@ -597,7 +597,7 @@ <h1>DFLib DataFrame Documentation - v2 (alpha)</h1>
597597< li > < a href ="#unions "> Unions</ a >
598598< ul class ="sectlevel2 ">
599599< li > < a href ="#_series_union "> Series Union</ a > </ li >
600- < li > < a href ="#_dataframes_union " > DataFrames Union</ a > </ li >
600+ < li > < a href ="#_dataframe_union " > DataFrame Union</ a > </ li >
601601</ ul >
602602</ li >
603603< li > < a href ="#joins "> Joins</ a >
@@ -3928,9 +3928,9 @@ <h3 id="_series_union">Series Union</h3>
39283928</ div >
39293929</ div >
39303930< div class ="sect2 ">
3931- < h3 id ="_dataframes_union " > DataFrames Union</ h3 >
3931+ < h3 id ="_dataframe_union " > DataFrame Union</ h3 >
39323932< div class ="paragraph ">
3933- < p > Similarly, to concatenate two or more DataFrames, you’d use < code > DataFrames .union(..)</ code > static method:</ p >
3933+ < p > Similarly, to concatenate two or more DataFrames, you’d use < code > DataFrame .union(..)</ code > static method:</ p >
39343934</ div >
39353935< div class ="listingblock ">
39363936< div class ="content ">
@@ -4176,8 +4176,8 @@ <h3 id="_column_namespace">Column Namespace</h3>
41764176< i class ="fa icon-note " title ="Note "> </ i >
41774177</ td >
41784178< td class ="content ">
4179- < code > DataFrame</ code > immutability applies to name assignments as well . Calling < code > .as()</ code > creates a separate
4180- < code > DataFrame</ code > , so the original one remains unnamed.
4179+ < code > DataFrame</ code > immutability assumption applies to name assignments too . Calling < code > .as()</ code > creates a new
4180+ < code > DataFrame</ code > , and the original one’s name remains unchanged (in our example, < code > null </ code > , i.e., unnamed) .
41814181</ td >
41824182</ tr >
41834183</ table >
@@ -4367,7 +4367,7 @@ <h3 id="_nested_loop_joins">Nested Loop Joins</h3>
43674367< h3 id ="_positional_joins "> Positional Joins</ h3 >
43684368< div class ="paragraph ">
43694369< p > A special form of joins is by row position. This is essentially the same as putting two DataFrames next to each other
4370- to produce the resulting DataFrame:</ p >
4370+ to produce the resulting DataFrame (what we used to call "horizontal concatenation" in the older versions of DFLib) :</ p >
43714371</ div >
43724372< div class ="listingblock ">
43734373< div class ="content ">
0 commit comments