m7n commited on
Commit
abbe3d1
·
1 Parent(s): ff632cb

added import for datamapplot.medoids and printed its help documentation

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -23,6 +23,13 @@ print("Numba threads:", numba.get_num_threads())
23
  numba.set_num_threads(16)
24
  print("Updated Numba threads:", numba.get_num_threads())
25
 
 
 
 
 
 
 
 
26
  from pathlib import Path
27
  from datetime import datetime
28
  from itertools import chain
 
23
  numba.set_num_threads(16)
24
  print("Updated Numba threads:", numba.get_num_threads())
25
 
26
+ import datamapplot.medoids
27
+
28
+
29
+ print(help(datamapplot.medoids))
30
+
31
+
32
+
33
  from pathlib import Path
34
  from datetime import datetime
35
  from itertools import chain