Skip to content
Snippets Groups Projects
Commit 6d024a58 authored by Guillaume Di Fatta's avatar Guillaume Di Fatta
Browse files

Merge branch 'salvador' into 'main'

Arrondissement du pourcentage

See merge request !6
parents 24147ec5 6a0fd103
No related branches found
No related tags found
1 merge request!6Arrondissement du pourcentage
......@@ -25,7 +25,7 @@ for i, tweet in enumerate(sntwitter.TwitterSearchScraper(query=construct_query(t
if ("metaverse" in tweet.rawContent.lower()):
table = pd.concat([table, pd.DataFrame.from_records([dict])])
print(i/tweetNumber*100, " %")
print(round(i/tweetNumber*100, 1), " %")
print(calc_frequency(table))
table = table.drop_duplicates(subset=["tweet"]).sort_values(by=["tweet"])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment