Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
GoEddie committed Dec 2, 2024
1 parent b49ab70 commit 930ab4e
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1720,6 +1720,9 @@ public DataFrame Transform(TransformFunction function)
return response;
}

/// <summary>
/// Prints out the Relation representation, if you don't want it printed to console then you can get it by doing `DataFrame.Relation.ToString()`
/// </summary>
public void ShowRelation()
{
try
Expand All @@ -1738,6 +1741,7 @@ public void ShowRelation()
var json = this.Relation.ToString();
SparkSession.Console.WriteLine(this.Relation.ToString());
}

}
}

Expand Down

0 comments on commit 930ab4e

Please sign in to comment.