File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed
doc/modules/ROOT/pages/tutorials Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,11 @@ what that looks like
113
113
114
114
[source, python, role=no-test]
115
115
----
116
- sessions.list()
116
+ gds_sessions = sessions.list()
117
+
118
+ # Display the sessions
119
+ from pandas import DataFrame
120
+ DataFrame(gds_sessions)
117
121
----
118
122
119
123
== Adding a dataset
Original file line number Diff line number Diff line change @@ -30,11 +30,11 @@ GDS sessions feature enabled for your tenant. Contact your account
30
30
manager to get the features enabled.
31
31
32
32
We also need to have the `+graphdatascience+` Python library installed,
33
- version `+1.11 +` or later.
33
+ version `+1.12a1 +` or later.
34
34
35
35
[source, python, role=no-test]
36
36
----
37
- %pip install "graphdatascience>=1.11 "
37
+ %pip install "graphdatascience>=1.12a1 "
38
38
----
39
39
40
40
== Aura API credentials
@@ -111,6 +111,10 @@ what that looks like
111
111
[source, python, role=no-test]
112
112
----
113
113
sessions.list()
114
+
115
+ # Display the sessions
116
+ from pandas import DataFrame
117
+ DataFrame(sessions)
114
118
----
115
119
116
120
== Adding a dataset
You can’t perform that action at this time.
0 commit comments