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.
Files changed (57) hide show
  1. scitex/_dev/_dashboard/_routes.py +13 -0
  2. scitex/_dev/_dashboard/_scripts.py +144 -23
  3. scitex/_dev/_dashboard/_styles.py +90 -0
  4. scitex/_dev/_dashboard/_templates.py +14 -1
  5. scitex/_dev/_rtd.py +122 -0
  6. scitex/_dev/_ssh.py +38 -8
  7. scitex/dev/plt/data/mpl/PLOTTING_FUNCTIONS.yaml +90 -0
  8. scitex/dev/plt/data/mpl/PLOTTING_SIGNATURES.yaml +1571 -0
  9. scitex/dev/plt/data/mpl/PLOTTING_SIGNATURES_DETAILED.yaml +6262 -0
  10. scitex/dev/plt/data/mpl/SIGNATURES_FLATTENED.yaml +1274 -0
  11. scitex/dev/plt/data/mpl/dir_ax.txt +459 -0
  12. scitex/scholar/_mcp/crossref_handlers.py +45 -7
  13. scitex/scholar/_mcp/openalex_handlers.py +45 -7
  14. scitex/scholar/config/default.yaml +2 -0
  15. scitex/scholar/data/.gitkeep +0 -0
  16. scitex/scholar/data/README.md +44 -0
  17. scitex/scholar/data/bib_files/bibliography.bib +1952 -0
  18. scitex/scholar/data/bib_files/neurovista.bib +277 -0
  19. scitex/scholar/data/bib_files/neurovista_enriched.bib +441 -0
  20. scitex/scholar/data/bib_files/neurovista_enriched_enriched.bib +441 -0
  21. scitex/scholar/data/bib_files/neurovista_processed.bib +338 -0
  22. scitex/scholar/data/bib_files/openaccess.bib +89 -0
  23. scitex/scholar/data/bib_files/pac-seizure_prediction_enriched.bib +2178 -0
  24. scitex/scholar/data/bib_files/pac.bib +698 -0
  25. scitex/scholar/data/bib_files/pac_enriched.bib +1061 -0
  26. scitex/scholar/data/bib_files/pac_processed.bib +0 -0
  27. scitex/scholar/data/bib_files/pac_titles.txt +75 -0
  28. scitex/scholar/data/bib_files/paywalled.bib +98 -0
  29. scitex/scholar/data/bib_files/related-papers-by-coauthors.bib +58 -0
  30. scitex/scholar/data/bib_files/related-papers-by-coauthors_enriched.bib +87 -0
  31. scitex/scholar/data/bib_files/seizure_prediction.bib +694 -0
  32. scitex/scholar/data/bib_files/seizure_prediction_processed.bib +0 -0
  33. scitex/scholar/data/bib_files/test_complete_enriched.bib +437 -0
  34. scitex/scholar/data/bib_files/test_final_enriched.bib +437 -0
  35. scitex/scholar/data/bib_files/test_seizure.bib +46 -0
  36. scitex/scholar/data/impact_factor/JCR_IF_2022.xlsx +0 -0
  37. scitex/scholar/data/impact_factor/JCR_IF_2024.db +0 -0
  38. scitex/scholar/data/impact_factor/JCR_IF_2024.xlsx +0 -0
  39. scitex/scholar/data/impact_factor/JCR_IF_2024_v01.db +0 -0
  40. scitex/scholar/data/impact_factor.db +0 -0
  41. scitex/scholar/local_dbs/__init__.py +5 -1
  42. scitex/scholar/local_dbs/export.py +93 -0
  43. scitex/scholar/local_dbs/unified.py +505 -0
  44. scitex/scholar/metadata_engines/ScholarEngine.py +11 -0
  45. scitex/scholar/metadata_engines/individual/OpenAlexLocalEngine.py +346 -0
  46. scitex/scholar/metadata_engines/individual/__init__.py +1 -0
  47. {scitex-2.17.3.dist-info → scitex-2.17.4.dist-info}/METADATA +1 -1
  48. {scitex-2.17.3.dist-info → scitex-2.17.4.dist-info}/RECORD +51 -22
  49. scitex/scholar/url_finder/.tmp/open_url/KNOWN_RESOLVERS.py +0 -462
  50. scitex/scholar/url_finder/.tmp/open_url/README.md +0 -223
  51. scitex/scholar/url_finder/.tmp/open_url/_DOIToURLResolver.py +0 -694
  52. scitex/scholar/url_finder/.tmp/open_url/_OpenURLResolver.py +0 -1160
  53. scitex/scholar/url_finder/.tmp/open_url/_ResolverLinkFinder.py +0 -344
  54. scitex/scholar/url_finder/.tmp/open_url/__init__.py +0 -24
  55. {scitex-2.17.3.dist-info → scitex-2.17.4.dist-info}/WHEEL +0 -0
  56. {scitex-2.17.3.dist-info → scitex-2.17.4.dist-info}/entry_points.txt +0 -0
  57. {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