scitex 2.17.3__py3-none-any.whl → 2.17.4__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.
- scitex/_dev/_dashboard/_routes.py +13 -0
- scitex/_dev/_dashboard/_scripts.py +144 -23
- scitex/_dev/_dashboard/_styles.py +90 -0
- scitex/_dev/_dashboard/_templates.py +14 -1
- scitex/_dev/_rtd.py +122 -0
- scitex/_dev/_ssh.py +38 -8
- scitex/dev/plt/data/mpl/PLOTTING_FUNCTIONS.yaml +90 -0
- scitex/dev/plt/data/mpl/PLOTTING_SIGNATURES.yaml +1571 -0
- scitex/dev/plt/data/mpl/PLOTTING_SIGNATURES_DETAILED.yaml +6262 -0
- scitex/dev/plt/data/mpl/SIGNATURES_FLATTENED.yaml +1274 -0
- scitex/dev/plt/data/mpl/dir_ax.txt +459 -0
- scitex/scholar/_mcp/crossref_handlers.py +45 -7
- scitex/scholar/_mcp/openalex_handlers.py +45 -7
- scitex/scholar/config/default.yaml +2 -0
- scitex/scholar/data/.gitkeep +0 -0
- scitex/scholar/data/README.md +44 -0
- scitex/scholar/data/bib_files/bibliography.bib +1952 -0
- scitex/scholar/data/bib_files/neurovista.bib +277 -0
- scitex/scholar/data/bib_files/neurovista_enriched.bib +441 -0
- scitex/scholar/data/bib_files/neurovista_enriched_enriched.bib +441 -0
- scitex/scholar/data/bib_files/neurovista_processed.bib +338 -0
- scitex/scholar/data/bib_files/openaccess.bib +89 -0
- scitex/scholar/data/bib_files/pac-seizure_prediction_enriched.bib +2178 -0
- scitex/scholar/data/bib_files/pac.bib +698 -0
- scitex/scholar/data/bib_files/pac_enriched.bib +1061 -0
- scitex/scholar/data/bib_files/pac_processed.bib +0 -0
- scitex/scholar/data/bib_files/pac_titles.txt +75 -0
- scitex/scholar/data/bib_files/paywalled.bib +98 -0
- scitex/scholar/data/bib_files/related-papers-by-coauthors.bib +58 -0
- scitex/scholar/data/bib_files/related-papers-by-coauthors_enriched.bib +87 -0
- scitex/scholar/data/bib_files/seizure_prediction.bib +694 -0
- scitex/scholar/data/bib_files/seizure_prediction_processed.bib +0 -0
- scitex/scholar/data/bib_files/test_complete_enriched.bib +437 -0
- scitex/scholar/data/bib_files/test_final_enriched.bib +437 -0
- scitex/scholar/data/bib_files/test_seizure.bib +46 -0
- scitex/scholar/data/impact_factor/JCR_IF_2022.xlsx +0 -0
- scitex/scholar/data/impact_factor/JCR_IF_2024.db +0 -0
- scitex/scholar/data/impact_factor/JCR_IF_2024.xlsx +0 -0
- scitex/scholar/data/impact_factor/JCR_IF_2024_v01.db +0 -0
- scitex/scholar/data/impact_factor.db +0 -0
- scitex/scholar/local_dbs/__init__.py +5 -1
- scitex/scholar/local_dbs/export.py +93 -0
- scitex/scholar/local_dbs/unified.py +505 -0
- scitex/scholar/metadata_engines/ScholarEngine.py +11 -0
- scitex/scholar/metadata_engines/individual/OpenAlexLocalEngine.py +346 -0
- scitex/scholar/metadata_engines/individual/__init__.py +1 -0
- {scitex-2.17.3.dist-info → scitex-2.17.4.dist-info}/METADATA +1 -1
- {scitex-2.17.3.dist-info → scitex-2.17.4.dist-info}/RECORD +51 -22
- scitex/scholar/url_finder/.tmp/open_url/KNOWN_RESOLVERS.py +0 -462
- scitex/scholar/url_finder/.tmp/open_url/README.md +0 -223
- scitex/scholar/url_finder/.tmp/open_url/_DOIToURLResolver.py +0 -694
- scitex/scholar/url_finder/.tmp/open_url/_OpenURLResolver.py +0 -1160
- scitex/scholar/url_finder/.tmp/open_url/_ResolverLinkFinder.py +0 -344
- scitex/scholar/url_finder/.tmp/open_url/__init__.py +0 -24
- {scitex-2.17.3.dist-info → scitex-2.17.4.dist-info}/WHEEL +0 -0
- {scitex-2.17.3.dist-info → scitex-2.17.4.dist-info}/entry_points.txt +0 -0
- {scitex-2.17.3.dist-info → scitex-2.17.4.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
# Timestamp: "2025-12-21 12:37:14 (ywatanabe)"
|
|
2
|
+
# File: ./src/scitex/dev/plt/data/mpl/PLOTTING_FUNCTIONS.yaml
|
|
3
|
+
|
|
4
|
+
basic:
|
|
5
|
+
- plot # Line/marker plots
|
|
6
|
+
- scatter # Scatter plots
|
|
7
|
+
- bar # Vertical bar charts
|
|
8
|
+
- barh # Horizontal bar charts
|
|
9
|
+
- stem # Stem plots
|
|
10
|
+
- step # Step plots
|
|
11
|
+
- fill # Filled polygons
|
|
12
|
+
- fill_between # Fill between y-values
|
|
13
|
+
- fill_betweenx # Fill between x-values
|
|
14
|
+
|
|
15
|
+
statistical:
|
|
16
|
+
- hist # Histogram
|
|
17
|
+
- hist2d # 2D histogram
|
|
18
|
+
- boxplot # Box and whisker plots
|
|
19
|
+
- bxp # Box plot from precomputed stats
|
|
20
|
+
- violinplot # Violin plots
|
|
21
|
+
- violin # Single violin
|
|
22
|
+
- errorbar # Error bar plots
|
|
23
|
+
- pie # Pie charts
|
|
24
|
+
- ecdf # Empirical cumulative distribution
|
|
25
|
+
|
|
26
|
+
image:
|
|
27
|
+
- imshow # Display image/array
|
|
28
|
+
- matshow # Display matrix
|
|
29
|
+
- pcolor # Pseudocolor plot
|
|
30
|
+
- pcolormesh # Pseudocolor mesh (faster)
|
|
31
|
+
- pcolorfast # Pseudocolor (fastest)
|
|
32
|
+
- contour # Contour lines
|
|
33
|
+
- contourf # Filled contours
|
|
34
|
+
- hexbin # Hexagonal binning
|
|
35
|
+
- spy # Sparsity pattern
|
|
36
|
+
|
|
37
|
+
vector:
|
|
38
|
+
- quiver # Arrow/vector field
|
|
39
|
+
- streamplot # Streamlines
|
|
40
|
+
- barbs # Wind barbs
|
|
41
|
+
|
|
42
|
+
spectral:
|
|
43
|
+
- specgram # Spectrogram
|
|
44
|
+
- psd # Power spectral density
|
|
45
|
+
- csd # Cross spectral density
|
|
46
|
+
- cohere # Coherence
|
|
47
|
+
- acorr # Autocorrelation
|
|
48
|
+
- xcorr # Cross-correlation
|
|
49
|
+
- angle_spectrum # Phase angle spectrum
|
|
50
|
+
- magnitude_spectrum # Magnitude spectrum
|
|
51
|
+
- phase_spectrum # Phase spectrum
|
|
52
|
+
|
|
53
|
+
triangulation:
|
|
54
|
+
- tricontour # Triangular contour lines
|
|
55
|
+
- tricontourf # Triangular filled contours
|
|
56
|
+
- tripcolor # Triangular pseudocolor
|
|
57
|
+
- triplot # Triangular grid lines
|
|
58
|
+
|
|
59
|
+
composite:
|
|
60
|
+
- stackplot # Stacked area plots
|
|
61
|
+
- stairs # Stair/step plots
|
|
62
|
+
- eventplot # Event sequence plots
|
|
63
|
+
- broken_barh # Broken horizontal bars
|
|
64
|
+
|
|
65
|
+
log_scale:
|
|
66
|
+
- loglog # Log-log scale plot
|
|
67
|
+
- semilogx # Semi-log x scale
|
|
68
|
+
- semilogy # Semi-log y scale
|
|
69
|
+
|
|
70
|
+
annotation:
|
|
71
|
+
- annotate # Text with arrow annotation
|
|
72
|
+
- text # Text at position
|
|
73
|
+
- arrow # Arrow patch
|
|
74
|
+
- axhline # Horizontal line across axes
|
|
75
|
+
- axvline # Vertical line across axes
|
|
76
|
+
- hlines # Horizontal lines at y positions
|
|
77
|
+
- vlines # Vertical lines at x positions
|
|
78
|
+
- axhspan # Horizontal span (shaded region)
|
|
79
|
+
- axvspan # Vertical span (shaded region)
|
|
80
|
+
- axline # Infinite line
|
|
81
|
+
|
|
82
|
+
decoration:
|
|
83
|
+
- legend # Add legend
|
|
84
|
+
- grid # Add grid
|
|
85
|
+
- table # Add table
|
|
86
|
+
- clabel # Contour labels
|
|
87
|
+
- bar_label # Bar chart labels
|
|
88
|
+
- quiverkey # Quiver key/legend
|
|
89
|
+
|
|
90
|
+
# EOF
|