Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on April 26, 2018 3:56AM
Likes: 0
Replies: 1
I noticed on https://www.dataiku.com/learn/guide/code/webapps/use-python-backend.html
That code piece is incorrect:
# Agreggate data by directors and sort directors by number of films realised in
# San Francisco
count_Director = San_francisco_film.groupby(['Director']).Title.count()
count_Director.sort_values(ascending=False)
it should be:
# Agreggate data by directors and sort directors by number of films realised in
# San Francisco
count_Director = San_francisco_film.groupby(['Director']).Title.count().sort_values(ascending=False)