MulaiMulai sekarang secara gratis

Generating mean frequency

We need to produce a metric which can be graphed over time. Our function check_word_in_tweet() returns a boolean Series. Remember that the boolean value True == 1, so we can produce a column for each keyword we're interested in and use it to understand its over time prevalence.

Latihan ini adalah bagian dari kursus

Analyzing Social Media Data in Python

Lihat Kursus

Petunjuk latihan

  • Create a column called python and store the results of check_word_in_tweet() for the string '#python' in it.
  • Do the same, but with a column called rstats and the string '#rstats'.

Latihan interaktif praktis

Cobalah latihan ini dengan menyelesaikan kode contoh berikut.

# Create a python column
ds_tweets[____] = ____(____, ____)

# Create an rstats column
____[____] = ____(____, ____)
Edit dan Jalankan Kode