Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ Apart from these, the following properties are also available, and may be useful
<td>
Enable profiling in Python worker, the profile result will show up by `sc.show_profiles()`,
or it will be displayed before the driver exiting. It also can be dumped into disk by
`sc.dump_profiles(path)`. If some of the profile results had been displayed maually,
`sc.dump_profiles(path)`. If some of the profile results had been displayed manually,
they will not be displayed automatically before driver exiting.

By default the `pyspark.profiler.BasicProfiler` will be used, but this can be overridden by
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ class DataFrame private[sql](
def as(alias: Symbol): DataFrame = as(alias.name)

/**
* Selects a set of expressions.
* Selects a set of column based expressions.
* {{{
* df.select($"colA", $"colB" + 1)
* }}}
Expand Down