Thank you very much for the very inspiring Online-Course:
https://neo4j.com/graphacademy/training-gdsds-40/enrollment/
I have some Questions about 04_Predictions.ipynb
In line[28] you create a named graph:
graph.run("""
CALL gds.graph.create('coauthor','Author',
{CO_AUTHOR_EARLY: {orientation:'UNDIRECTED'},
CO_AUTHOR: {orientation:'UNDIRECTED'}}) // ### Should be CO_AUTHOR_LATE ???
""").to_data_frame()
My Question is if the should be CO_AUTHOR_LATE instead of CO_AUTHOR ?