REPOSITORY OVERVIEWLive repository statistics
★ 6Stars
⑂ 1Forks
◯ 0Open issues
◉ 6Watchers
44/100
OPENREPOHUB HEALTH SIGNALLimited signals
A transparent discovery signal based on current public GitHub metadata.
Recent activity35% weight
10 Community adoption25% weight
12 Maintenance state20% weight
100 License clarity10% weight
100 Project information10% weight
75 This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
README preview
3D-surface-plot-Python
The n*m Z matrix can contain heights of water for example, to plot the submarine surface.
If you have any question, tell me!
First setp
from LinearInterpolation3D import *
import pandas as pd
import numpy as np
if __name__ == "__main__":
z_data = np.fromfunction(lambda x, y: np.sin(x/5)+np.cos(y/5)+0.1, (20, 20))
mon_interpolateur = Interpolator(matrix=z_data)
# With color gradient (unique plot)
f1 = mon_interpolateur.graph_3D_color(display=False) # display=True to juste plot this figure
# With lines (unique plot)
f2 = mon_interpolateur.graph_3D_line(display=False)
# Subplot with gradient and lines
mon_interpolateur.subplot_line_gradient()
ALGORITHMICALLY RELATEDSimilar Open-Source Projects
Selected from shared topics, language and repository description—not editorial ratings.
A simple tool to visualize how Risk Weights (RW) evolve with PD, LGD, and Maturity, based on the CRR 575/2013 formula. Outputs an interactive 3D HTML plot with a maturity slider.
41/100 healthActive repositoryHas homepage
HTMLNo license#3d-graphics#crr#html#plotly
⑂ 0 forks◯ 0 issuesUpdated Oct 8, 2025
Project homepage ↗