Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MINOR][DOCS] Remove u prefix for py str #50185

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ You can get values from DataFrame directly, by calling some actions, or transfor
126

>>> textFile.first() # First row in this DataFrame
Row(value=u'# Apache Spark')
Row(value='# Apache Spark')
{% endhighlight %}

Now let's transform this DataFrame to a new one. We call `filter` to return a new DataFrame with a subset of the lines in the file.
Expand Down Expand Up @@ -147,7 +147,7 @@ Here, we use the `explode` function in `select`, to transform a Dataset of lines

{% highlight python %}
>>> wordCounts.collect()
[Row(word=u'online', count=1), Row(word=u'graphs', count=1), ...]
[Row(word='online', count=1), Row(word='graphs', count=1), ...]
{% endhighlight %}

</div>
Expand Down