We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@jadianes hello I'm Hiroyuki. nice Tutorial, Thank you!
In[7]
tcp_interactions_out = tcp_interactions.map(lambda p: "Duration: {}, Dest. bytes: {}".format(p.duration, p.dst_bytes)) for ti_out in tcp_interactions_out.collect(): print ti_out
but map can use only for RDD. so we need to change tcp_interactions(DataFrame) to RDD , I think.
here is the sample
tcp_interactions_out = tcp_interactions.rdd.map(lambda p: "Duration: {}, Dest. bytes: {}".format(p.duration, p.dst_bytes)) for ti_out in tcp_interactions_out.collect(): print ti_out
how do you think about it?
If there is my mistake in my code or in my sentence , sorry. (couse Im not good at writting English) please forgive me if I make you feel bad.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@jadianes
hello I'm Hiroyuki.
nice Tutorial, Thank you!
In[7]
but map can use only for RDD.
so we need to change tcp_interactions(DataFrame) to RDD , I think.
here is the sample
how do you think about it?
If there is my mistake in my code or in my sentence , sorry. (couse Im not good at writting English)
please forgive me if I make you feel bad.
The text was updated successfully, but these errors were encountered: