Use a web app Python backend

UserBird
Dataiker
Use a web app Python backend

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)


 

0 Kudos
1 Reply
Alex_Reutter
Dataiker Alumni
Hi, thanks for your input! You are right, and the correction has been made in source and will show up when the website is next refreshed.
0 Kudos

Labels

?
Labels (3)
A banner prompting to get Dataiku