topologicpy 0.8.46__py3-none-any.whl → 0.8.48__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
topologicpy/Color.py CHANGED
@@ -175,7 +175,7 @@ class Color:
175
175
  color : str
176
176
  A CSS named color.
177
177
  alpha : float , optional
178
- THe desired alpha (transparency value). The default is None which means no alpha value will be included in the returned list.
178
+ THe desired alpha (transparency value). Default is None which means no alpha value will be included in the returned list.
179
179
 
180
180
  Returns
181
181
  -------
@@ -224,7 +224,7 @@ class Color:
224
224
  hex : str
225
225
  A hexadecimal color string in the format '#RRGGBB'.
226
226
  alpha : float , optional
227
- The transparency value. 0.0 means the color is fully transparent, 1.0 means the color is fully opaque. The default is None
227
+ The transparency value. 0.0 means the color is fully transparent, 1.0 means the color is fully opaque. Default is None
228
228
  which means no transparency value will be included in the returned color.
229
229
  Returns
230
230
  -------
@@ -259,17 +259,17 @@ class Color:
259
259
  Parameters
260
260
  ----------
261
261
  value : float , optional
262
- The input value. The default is 0.5.
262
+ The input value. Default is 0.5.
263
263
  minValue : float , optional
264
- the input minimum value. The default is 0.0.
264
+ the input minimum value. Default is 0.0.
265
265
  maxValue : float , optional
266
- The input maximum value. The default is 1.0.
266
+ The input maximum value. Default is 1.0.
267
267
  alpha : float , optional
268
- The alpha (transparency) value. 0.0 means the color is fully transparent, 1.0 means the color is fully opaque. The default is 1.0.
268
+ The alpha (transparency) value. 0.0 means the color is fully transparent, 1.0 means the color is fully opaque. Default is 1.0.
269
269
  useAlpha : bool , optional
270
270
  If set to True, the returns list includes the alpha value as a fourth element in the list.
271
271
  colorScale : str , optional
272
- The desired type of plotly color scales to use (e.g. "Viridis", "Plasma"). The default is "Viridis". For a full list of names, see https://plotly.com/python/builtin-colorscales/.
272
+ The desired type of plotly color scales to use (e.g. "Viridis", "Plasma"). Default is "Viridis". For a full list of names, see https://plotly.com/python/builtin-colorscales/.
273
273
 
274
274
  Returns
275
275
  -------
@@ -548,7 +548,7 @@ class Color:
548
548
  color : list
549
549
  The input color list. This is assumed to be in the format [r, g, b] or [r, g, b, a] where the range is from 0 to 255.
550
550
  alpha : float , optional
551
- The transparency value. 0.0 means the color is fully transparent, 1.0 means the color is fully opaque. The default is 1.0.
551
+ The transparency value. 0.0 means the color is fully transparent, 1.0 means the color is fully opaque. Default is 1.0.
552
552
  useAlpha : bool , optional
553
553
  If set to True, the returns list includes the alpha value as a fourth element in the list.
554
554
 
topologicpy/DGL.py CHANGED
@@ -1480,7 +1480,7 @@ class DGL:
1480
1480
  predicted : list
1481
1481
  The input list of predicted values.
1482
1482
  mantissa : int , optional
1483
- The desired length of the mantissa. The default is 6.
1483
+ The number of decimal places to round the result to. Default is 6.
1484
1484
 
1485
1485
  Returns
1486
1486
  -------
@@ -1519,7 +1519,7 @@ class DGL:
1519
1519
  predicted : list
1520
1520
  The input list of predicted values.
1521
1521
  mantissa : int , optional
1522
- The desired length of the mantissa. The default is 6.
1522
+ The number of decimal places to round the result to. Default is 6.
1523
1523
 
1524
1524
  Returns
1525
1525
  -------
@@ -1576,7 +1576,7 @@ class DGL:
1576
1576
  method : str, optional
1577
1577
  The method of sampling. This can be "undersampling" or "oversampling". It is case insensitive. The defaul is "undersampling".
1578
1578
  key : str , optional
1579
- The key used for the node attributes. The default is "feat".
1579
+ The key used for the node attributes. Default is "feat".
1580
1580
 
1581
1581
  Returns
1582
1582
  -------
@@ -1622,9 +1622,9 @@ class DGL:
1622
1622
  categories : list
1623
1623
  The list of categories of node features.
1624
1624
  node_attr_key : str , optional
1625
- The dictionary key of the node features. The default is "feat".
1625
+ The dictionary key of the node features. Default is "feat".
1626
1626
  tolerance : float , optional
1627
- The desired tolerance. The default is 0.0001.
1627
+ The desired tolerance. Default is 0.0001.
1628
1628
 
1629
1629
  Returns
1630
1630
  -------
@@ -1697,9 +1697,9 @@ class DGL:
1697
1697
  labels : list
1698
1698
  The input list of labels.
1699
1699
  categories : list , optional
1700
- The list of node categories. If not specified, the categories are computed directly from the labels. The default is None.
1700
+ The list of node categories. If not specified, the categories are computed directly from the labels. Default is None.
1701
1701
  mantissa : int , optional
1702
- The desired length of the mantissa. The default is 6.
1702
+ The number of decimal places to round the result to. Default is 6.
1703
1703
 
1704
1704
  Returns
1705
1705
  -------
@@ -1770,7 +1770,7 @@ class DGL:
1770
1770
  predicted : list
1771
1771
  The input list of predicts labels.
1772
1772
  normalized : bool , optional
1773
- If set to True, the returned data will be normalized (proportion of 1). Otherwise, actual numbers are returned. The default is False.
1773
+ If set to True, the returned data will be normalized (proportion of 1). Otherwise, actual numbers are returned. Default is False.
1774
1774
 
1775
1775
  Returns
1776
1776
  -------
@@ -1942,7 +1942,7 @@ class DGL:
1942
1942
  Parameters
1943
1943
  ----------
1944
1944
  name : str
1945
- The name of the sample dataset. This can be "ENZYMES", "DD", "COLLAB", or "MUTAG". It is case insensitive. The default is "ENZYMES".
1945
+ The name of the sample dataset. This can be "ENZYMES", "DD", "COLLAB", or "MUTAG". It is case insensitive. Default is "ENZYMES".
1946
1946
 
1947
1947
  Returns
1948
1948
  -------
@@ -1973,7 +1973,7 @@ class DGL:
1973
1973
  Parameters
1974
1974
  ----------
1975
1975
  name : str
1976
- The name of the sample dataset to load. This can be "Cora", "Citeseer", or "Pubmed". It is case insensitive. The default is "Cora".
1976
+ The name of the sample dataset to load. This can be "Cora", "Citeseer", or "Pubmed". It is case insensitive. Default is "Cora".
1977
1977
 
1978
1978
  Raises
1979
1979
  ------
@@ -2052,29 +2052,29 @@ class DGL:
2052
2052
  The desired type of model. The options are:
2053
2053
  - "Classifier"
2054
2054
  - "Regressor"
2055
- The option is case insensitive. The default is "classifierholdout"
2055
+ The option is case insensitive. Default is "classifierholdout"
2056
2056
  optimizer : Optimizer
2057
2057
  The desired optimizer.
2058
2058
  cv_type : str , optional
2059
- The desired cross-validation method. This can be "Holdout" or "K-Fold". It is case-insensitive. The default is "Holdout".
2059
+ The desired cross-validation method. This can be "Holdout" or "K-Fold". It is case-insensitive. Default is "Holdout".
2060
2060
  split : list , optional
2061
- The desired split between training validation, and testing. [0.8, 0.1, 0.1] means that 80% of the data is used for training 10% of the data is used for validation, and 10% is used for testing. The default is [0.8, 0.1, 0.1].
2061
+ The desired split between training validation, and testing. [0.8, 0.1, 0.1] means that 80% of the data is used for training 10% of the data is used for validation, and 10% is used for testing. Default is [0.8, 0.1, 0.1].
2062
2062
  k_folds : int , optional
2063
- The desired number of k-folds. The default is 5.
2063
+ The desired number of k-folds. Default is 5.
2064
2064
  hl_widths : list , optional
2065
- The list of hidden layer widths. A list of [16, 32, 16] means that the model will have 3 hidden layers with number of neurons in each being 16, 32, 16 respectively from input to output. The default is [32].
2065
+ The list of hidden layer widths. A list of [16, 32, 16] means that the model will have 3 hidden layers with number of neurons in each being 16, 32, 16 respectively from input to output. Default is [32].
2066
2066
  conv_layer_type : str , optional
2067
- The desired type of the convolution layer. The options are "Classic", "GraphConv", "GINConv", "SAGEConv", "TAGConv", "DGN". It is case insensitive. The default is "SAGEConv".
2067
+ The desired type of the convolution layer. The options are "Classic", "GraphConv", "GINConv", "SAGEConv", "TAGConv", "DGN". It is case insensitive. Default is "SAGEConv".
2068
2068
  pooling : str , optional
2069
- The desired type of pooling. The options are "AvgPooling", "MaxPooling", or "SumPooling". It is case insensitive. The default is "AvgPooling".
2069
+ The desired type of pooling. The options are "AvgPooling", "MaxPooling", or "SumPooling". It is case insensitive. Default is "AvgPooling".
2070
2070
  batch_size : int , optional
2071
- The desired batch size. The default is 1.
2071
+ The desired batch size. Default is 1.
2072
2072
  epochs : int , optional
2073
- The desired number of epochs. The default is 1.
2073
+ The desired number of epochs. Default is 1.
2074
2074
  use_gpu : bool , optional
2075
- If set to True, the model will attempt to use the GPU. The default is False.
2075
+ If set to True, the model will attempt to use the GPU. Default is False.
2076
2076
  loss_function : str , optional
2077
- The desired loss function. The options are "Cross-Entropy" or "Negative Log Likelihood". It is case insensitive. The default is "Cross-Entropy".
2077
+ The desired loss function. The options are "Cross-Entropy" or "Negative Log Likelihood". It is case insensitive. Default is "Cross-Entropy".
2078
2078
 
2079
2079
  Returns
2080
2080
  -------
@@ -2146,7 +2146,7 @@ class DGL:
2146
2146
  dataset : DGLDataset
2147
2147
  The input dataset
2148
2148
  graphLabelHeader: str , optional
2149
- The key string under which the graph labels are stored. The default is "label".
2149
+ The key string under which the graph labels are stored. Default is "label".
2150
2150
 
2151
2151
  Returns
2152
2152
  -------
@@ -2182,7 +2182,7 @@ class DGL:
2182
2182
  dataset : DGLDataset
2183
2183
  The input dataset
2184
2184
  graphFeaturesHeader: str , optional
2185
- The key string under which the graph features are stored. The default is "feat".
2185
+ The key string under which the graph features are stored. Default is "feat".
2186
2186
 
2187
2187
  Returns
2188
2188
  -------
@@ -2287,7 +2287,7 @@ class DGL:
2287
2287
  dataset : DGLDataset
2288
2288
  The input dataset
2289
2289
  split : list , optional
2290
- A list of length 3 containing the fraction to use for training, validation and test. If None, we will use [0.8, 0.1, 0.1]. The default is [0.8, 0.1, 0.1]
2290
+ A list of length 3 containing the fraction to use for training, validation and test. If None, we will use [0.8, 0.1, 0.1]. Default is [0.8, 0.1, 0.1]
2291
2291
  randomState : int or array_like , optional
2292
2292
  Random seed used to initialize the pseudo-random number generator. Can be any integer between 0 and 2**32 - 1 inclusive, an array (or other sequence) of such integers, or None (the default). If seed is None, then RandomState will try to read data from /dev/urandom (or the Windows analogue) if available or seed from the clock otherwise.
2293
2293
 
@@ -2364,17 +2364,17 @@ class DGL:
2364
2364
  Parameters
2365
2365
  ----------
2366
2366
  amsgrad : bool , optional.
2367
- amsgrad is an extension to the Adam version of gradient descent that attempts to improve the convergence properties of the algorithm, avoiding large abrupt changes in the learning rate for each input variable. The default is True.
2367
+ amsgrad is an extension to the Adam version of gradient descent that attempts to improve the convergence properties of the algorithm, avoiding large abrupt changes in the learning rate for each input variable. Default is True.
2368
2368
  betas : tuple , optional
2369
- Betas are used as for smoothing the path to the convergence also providing some momentum to cross a local minima or saddle point. The default is (0.9, 0.999).
2369
+ Betas are used as for smoothing the path to the convergence also providing some momentum to cross a local minima or saddle point. Default is (0.9, 0.999).
2370
2370
  eps : float . optional.
2371
- eps is a term added to the denominator to improve numerical stability. The default is 0.000001.
2371
+ eps is a term added to the denominator to improve numerical stability. Default is 0.000001.
2372
2372
  lr : float
2373
- The learning rate (lr) defines the adjustment in the weights of our network with respect to the loss gradient descent. The default is 0.001.
2373
+ The learning rate (lr) defines the adjustment in the weights of our network with respect to the loss gradient descent. Default is 0.001.
2374
2374
  maximize : float , optional
2375
- maximize the params based on the objective, instead of minimizing. The default is False.
2375
+ maximize the params based on the objective, instead of minimizing. Default is False.
2376
2376
  weightDecay : float , optional
2377
- weightDecay (L2 penalty) is a regularization technique applied to the weights of a neural network. The default is 0.0.
2377
+ weightDecay (L2 penalty) is a regularization technique applied to the weights of a neural network. Default is 0.0.
2378
2378
 
2379
2379
  Returns
2380
2380
  -------
@@ -2403,7 +2403,7 @@ class DGL:
2403
2403
  model : Model
2404
2404
  The input trained model.
2405
2405
  nodeATTRKey : str , optional
2406
- The key used for node attributes. The default is "feat".
2406
+ The key used for node attributes. Default is "feat".
2407
2407
 
2408
2408
  Returns
2409
2409
  -------
@@ -2443,7 +2443,7 @@ class DGL:
2443
2443
  model : Model
2444
2444
  The input trained model.
2445
2445
  nodeATTRKey : str , optional
2446
- The key used for node attributes. The default is "feat".
2446
+ The key used for node attributes. Default is "feat".
2447
2447
 
2448
2448
  Returns
2449
2449
  -------
@@ -2573,23 +2573,23 @@ class DGL:
2573
2573
  labels : list
2574
2574
  The labels to use for the data.
2575
2575
  width : int , optional
2576
- The desired width of the figure. The default is 950.
2576
+ The desired width of the figure. Default is 950.
2577
2577
  height : int , optional
2578
- The desired height of the figure. The default is 500.
2578
+ The desired height of the figure. Default is 500.
2579
2579
  title : str , optional
2580
- The chart title. The default is "Training and Testing Results".
2580
+ The chart title. Default is "Training and Testing Results".
2581
2581
  xTitle : str , optional
2582
- The X-axis title. The default is "Epochs".
2582
+ The X-axis title. Default is "Epochs".
2583
2583
  xSpacing : float , optional
2584
- The X-axis spacing. The default is 1.0.
2584
+ The X-axis spacing. Default is 1.0.
2585
2585
  yTitle : str , optional
2586
- The Y-axis title. The default is "Accuracy and Loss".
2586
+ The Y-axis title. Default is "Accuracy and Loss".
2587
2587
  ySpacing : float , optional
2588
- The Y-axis spacing. The default is 0.1.
2588
+ The Y-axis spacing. Default is 0.1.
2589
2589
  useMarkers : bool , optional
2590
- If set to True, markers will be displayed. The default is False.
2590
+ If set to True, markers will be displayed. Default is False.
2591
2591
  chartType : str , optional
2592
- The desired type of chart. The options are "Line", "Bar", or "Scatter". It is case insensitive. The default is "Line".
2592
+ The desired type of chart. The options are "Line", "Bar", or "Scatter". It is case insensitive. Default is "Line".
2593
2593
  backgroundColor : str , optional
2594
2594
  The desired background color. This can be any plotly color string and may be specified as:
2595
2595
  - A hex string (e.g. '#ff0000')
@@ -2607,15 +2607,15 @@ class DGL:
2607
2607
  - A named CSS color.
2608
2608
  The default is 'lightgray'.
2609
2609
  marginLeft : int , optional
2610
- The desired left margin in pixels. The default is 0.
2610
+ The desired left margin in pixels. Default is 0.
2611
2611
  marginRight : int , optional
2612
- The desired right margin in pixels. The default is 0.
2612
+ The desired right margin in pixels. Default is 0.
2613
2613
  marginTop : int , optional
2614
- The desired top margin in pixels. The default is 40.
2614
+ The desired top margin in pixels. Default is 40.
2615
2615
  marginBottom : int , optional
2616
- The desired bottom margin in pixels. The default is 0.
2616
+ The desired bottom margin in pixels. Default is 0.
2617
2617
  renderer : str , optional
2618
- The desired plotly renderer. The default is "notebook".
2618
+ The desired plotly renderer. Default is "notebook".
2619
2619
 
2620
2620
  Returns
2621
2621
  -------
@@ -2737,7 +2737,7 @@ class DGL:
2737
2737
  path : str
2738
2738
  The file path at which to save the model.
2739
2739
  overwrite : bool, optional
2740
- If set to True, any existing file will be overwritten. Otherwise, it won't. The default is False.
2740
+ If set to True, any existing file will be overwritten. Otherwise, it won't. Default is False.
2741
2741
 
2742
2742
  Returns
2743
2743
  -------
@@ -2863,7 +2863,7 @@ class DGL:
2863
2863
  path : str
2864
2864
  The input BIN file path.
2865
2865
  graphLabelKey : str , optional
2866
- The graph label key to use. The default is "label".
2866
+ The graph label key to use. Default is "label".
2867
2867
 
2868
2868
  Returns
2869
2869
  -------
@@ -2887,7 +2887,7 @@ class DGL:
2887
2887
  data : dict
2888
2888
  The input data. See Data(model)
2889
2889
  overwrite : bool , optional
2890
- If set to True, previous saved results files are overwritten. Otherwise, the new results are appended to the previously saved files. The default is False.
2890
+ If set to True, previous saved results files are overwritten. Otherwise, the new results are appended to the previously saved files. Default is False.
2891
2891
 
2892
2892
  Returns
2893
2893
  -------
@@ -2955,7 +2955,7 @@ class DGL:
2955
2955
  predicted : list
2956
2956
  The input list of predicted values.
2957
2957
  mantissa : int , optional
2958
- The desired length of the mantissa. The default is 6.
2958
+ The number of decimal places to round the result to. Default is 6.
2959
2959
 
2960
2960
  Returns
2961
2961
  -------
@@ -2994,7 +2994,7 @@ class DGL:
2994
2994
  predicted : list
2995
2995
  The input list of predicted values.
2996
2996
  mantissa : int , optional
2997
- The desired length of the mantissa. The default is 6.
2997
+ The number of decimal places to round the result to. Default is 6.
2998
2998
 
2999
2999
  Returns
3000
3000
  -------
@@ -3038,7 +3038,7 @@ class DGL:
3038
3038
  testingDataset : DGLDataset
3039
3039
  The input testing dataset. If not specified, a portion of the trainingDataset will be used for testing according the to the split list as specified in the hyper-parameters.
3040
3040
  overwrite : bool , optional
3041
- If set to True, previous saved results files are overwritten. Otherwise, the new results are appended to the previously saved files. The default is False.
3041
+ If set to True, previous saved results files are overwritten. Otherwise, the new results are appended to the previously saved files. Default is False.
3042
3042
 
3043
3043
  Returns
3044
3044
  -------
topologicpy/Dictionary.py CHANGED
@@ -59,15 +59,15 @@ class Dictionary():
59
59
  The type of subTopology on which to base the adjacency dictionary.
60
60
  labelKey : str , optional
61
61
  The returned subTopologies are labelled according to the dictionary values stored under this key.
62
- If the labelKey does not exist, it will be created and the subTopologies are labelled numerically and stored in the subTopologies' dictionary under this key. The default is None.
62
+ If the labelKey does not exist, it will be created and the subTopologies are labelled numerically and stored in the subTopologies' dictionary under this key. Default is None.
63
63
  weightKey : str , optional
64
- If set, the sharedTopologies' dictionaries will be searched for this key to set their weight. If the key is set to "Area" or "Length" (case insensitive), the area of shared faces or the length of the shared edges will be used as its weight. If set to None, a weight of 1 will be used. The default is None.
64
+ If set, the sharedTopologies' dictionaries will be searched for this key to set their weight. If the key is set to "Area" or "Length" (case insensitive), the area of shared faces or the length of the shared edges will be used as its weight. If set to None, a weight of 1 will be used. Default is None.
65
65
  includeWeights : bool , optional
66
- If set to True, edge weights are included. Otherwise, they are not. The default is False.
66
+ If set to True, edge weights are included. Otherwise, they are not. Default is False.
67
67
  mantissa : int , optional
68
- The desired length of the mantissa. The default is 6.
68
+ The number of decimal places to round the result to. Default is 6.
69
69
  silent : bool , optional
70
- If set to True, error and warning messages are suppressed. The default is False.
70
+ If set to True, error and warning messages are suppressed. Default is False.
71
71
 
72
72
  Returns
73
73
  -------
@@ -178,7 +178,7 @@ class Dictionary():
178
178
  value : int, float, str, or list
179
179
  A value corresponding to the input key. A value can be an integer, a float, a string, or a list.
180
180
  silent : bool , optional
181
- If set to True, error and warning messages are suppressed. The default is False.
181
+ If set to True, error and warning messages are suppressed. Default is False.
182
182
 
183
183
  Returns
184
184
  -------
@@ -249,7 +249,7 @@ class Dictionary():
249
249
  values : list
250
250
  A list of values corresponding to the list of keys. Values can be integers, floats, strings, or lists
251
251
  silent : bool , optional
252
- If set to True, error and warning messages are suppressed. The default is False.
252
+ If set to True, error and warning messages are suppressed. Default is False.
253
253
 
254
254
  Returns
255
255
  -------
@@ -290,7 +290,7 @@ class Dictionary():
290
290
  dictionaries : list or comma separated dictionaries
291
291
  The input list of dictionaries to be merged.
292
292
  silent : bool , optional
293
- If set to True, error and warning messages are suppressed. The default is False.
293
+ If set to True, error and warning messages are suppressed. Default is False.
294
294
 
295
295
  Returns
296
296
  -------
@@ -458,7 +458,7 @@ class Dictionary():
458
458
  pythonDictionary : dict
459
459
  The input python dictionary.
460
460
  silent : bool , optional
461
- If set to True, error and warning messages are suppressed. The default is False.
461
+ If set to True, error and warning messages are suppressed. Default is False.
462
462
 
463
463
  Returns
464
464
  -------
@@ -513,11 +513,11 @@ class Dictionary():
513
513
  dictionaries : list
514
514
  The input list of dictionaries to be filtered.
515
515
  searchType : str , optional
516
- The type of search query to conduct in the topology's dictionary. This can be one of "any", "equal to", "contains", "starts with", "ends with", "not equal to", "does not contain". The default is "any".
516
+ The type of search query to conduct in the topology's dictionary. This can be one of "any", "equal to", "contains", "starts with", "ends with", "not equal to", "does not contain". Default is "any".
517
517
  key : str , optional
518
- The dictionary key to search within. The default is None which means it will filter by topology type only.
518
+ The dictionary key to search within. Default is None which means it will filter by topology type only.
519
519
  value : str , optional
520
- The value to search for at the specified key. The default is None which means it will filter by topology type only.
520
+ The value to search for at the specified key. Default is None which means it will filter by topology type only.
521
521
 
522
522
  Returns
523
523
  -------
@@ -602,7 +602,7 @@ class Dictionary():
602
602
  dictionary : topologic_core.Dictionary or dict
603
603
  The input dictionary.
604
604
  silent : bool , optional
605
- If set to True, error and warning messages are suppressed. The default is False.
605
+ If set to True, error and warning messages are suppressed. Default is False.
606
606
 
607
607
  Returns
608
608
  -------
@@ -657,7 +657,7 @@ class Dictionary():
657
657
  dictionary : topologic_core.Dictionary
658
658
  The input dictionary.
659
659
  silent : bool , optional
660
- If set to True, error and warning messages are suppressed. The default is False.
660
+ If set to True, error and warning messages are suppressed. Default is False.
661
661
 
662
662
  Returns
663
663
  -------
@@ -710,7 +710,7 @@ class Dictionary():
710
710
  key : string
711
711
  The input key.
712
712
  silent : bool , optional
713
- If set to True, error and warning messages are suppressed. The default is False.
713
+ If set to True, error and warning messages are suppressed. Default is False.
714
714
 
715
715
  Returns
716
716
  -------
@@ -769,7 +769,7 @@ class Dictionary():
769
769
  value : int , float , string, or list
770
770
  The value associated with the key.
771
771
  silent : bool , optional
772
- If set to True, error and warning messages are suppressed. The default is False.
772
+ If set to True, error and warning messages are suppressed. Default is False.
773
773
 
774
774
  Returns
775
775
  -------
@@ -827,7 +827,7 @@ class Dictionary():
827
827
  values : list
828
828
  A list of values corresponding to the list of keys. Values can be integers, floats, strings, or lists
829
829
  silent : bool , optional
830
- If set to True, error and warning messages are suppressed. The default is False.
830
+ If set to True, error and warning messages are suppressed. Default is False.
831
831
 
832
832
  Returns
833
833
  -------
@@ -942,9 +942,9 @@ class Dictionary():
942
942
  key : string
943
943
  The input key.
944
944
  defaultValue : any , optional
945
- The default value to return if the key or value are not found. The default is None.
945
+ The default value to return if the key or value are not found. Default is None.
946
946
  silent : bool , optional
947
- If set to True, error and warning messages are suppressed. The default is False.
947
+ If set to True, error and warning messages are suppressed. Default is False.
948
948
 
949
949
  Returns
950
950
  -------
@@ -979,7 +979,7 @@ class Dictionary():
979
979
  dictionary : topologic_core.Dictionary or dict
980
980
  The input dictionary.
981
981
  silent : bool , optional
982
- If set to True, error and warning messages are suppressed. The default is False.
982
+ If set to True, error and warning messages are suppressed. Default is False.
983
983
 
984
984
  Returns
985
985
  -------
@@ -1025,9 +1025,9 @@ class Dictionary():
1025
1025
  keys : list
1026
1026
  The input list of keys.
1027
1027
  defaultValue : any , optional
1028
- The default value to return if the key or value are not found. The default is None.
1028
+ The default value to return if the key or value are not found. Default is None.
1029
1029
  silent : bool , optional
1030
- If set to True, error and warning messages are suppressed. The default is False.
1030
+ If set to True, error and warning messages are suppressed. Default is False.
1031
1031
 
1032
1032
  Returns
1033
1033
  -------