/plot.py (993a88f239b6304e48eb519c20a640f28055d7c9) (1366 bytes) (mode 100644) (type blob)
#!/usr/bin/env python
# coding: utf-8
# tohle je modul-wrapper k různým vizualizačním prostředkům
# кулэ ӧвӧл
# for python3.7
#def __getattr__(attr):
# return empty_plot
#
# optional dependences
#
try:# gnuplot
from . import gp_plot
plot2D = gp_plot.gp_plot
except BaseException as e:
plot2D_error_str = "plot2D import error: " + repr(e)
plot2D = lambda *args, **kwargs:print(plot2D_error_str)
try:# plot.ly
from . import plotly_plot
tri_estimation_graph = plotly_plot.tri_estimation_graph
except BaseException as e:
error_str = repr(e)
tri_estimation_graph = lambda *args, **kwargs:print(error_str)
try:# matplotlib
from . import mplot
plot3D = mplot.plot3D
except BaseException as e:
plot3D_error_str = "plot3D import error: " + repr(e)
plot3D = lambda *args, **kwargs:print(plot3D_error_str)
try: # pyqtgraph
from . import qt_plot
show2D = qt_plot.qt_gui_plot_2d
except BaseException as e:
show2D_error_str = "show2D import error: " + repr(e)
show2D = lambda *args, **kwargs:print(show2D_error_str)
#č tohle vůbec nemusí bežet všude
try: # pyqtgraph
from . import gl_plot
show3D = gl_plot.qt_gui_plot_3d
except BaseException as e:
show3D_error_str = "show3D import error: " + repr(e)
show3D = lambda *args, **kwargs:print(show3D_error_str)
Mode |
Type |
Size |
Ref |
File |
100644 |
blob |
19075 |
e556c1eafdce91cf8d67a5075447eb04a9abe383 |
IS_stat.py |
100644 |
blob |
6 |
0916b75b752887809bac2330f3de246c42c245cd |
__init__.py |
100644 |
blob |
73368 |
3d245b8568158ac63c80fa0847631776a140db0f |
blackbox.py |
100644 |
blob |
11243 |
10c424c2ce5e8cdd0da97a5aba74c54d1ca71e0d |
candybox.py |
100644 |
blob |
53568 |
5d2342f46163fb2320bde4c42577ad73fb304a96 |
dicebox.py |
100644 |
blob |
35771 |
e9632b8fb33b7dbd77cef556ec9c4dda0951064f |
estimation.py |
100644 |
blob |
34189 |
e2b43f8f1a46cfc950347d6106ff3cba9ffe5f0c |
f_models.py |
100644 |
blob |
31025 |
70bab60405bfe783a2f7a9f2c41b7c1629d3d474 |
g_models.py |
100644 |
blob |
42800 |
ade48f8103eaf1d2d0e002766535620a85c7c359 |
gl_plot.py |
100644 |
blob |
2718 |
5d721d117448dbb96c554ea8f0e4651ffe9ac457 |
gp_plot.py |
100644 |
blob |
29393 |
96162a5d181b8307507ba2f44bafe984aa939163 |
lukiskon.py |
100644 |
blob |
2004 |
6ea8dc8f50a656c48f786d5a00bd6398276c9741 |
misc.py |
100644 |
blob |
10489 |
1f6dd06a036fdc4ba6a7e6d61ac0b84e8ad3a4c1 |
mplot.py |
100644 |
blob |
1366 |
993a88f239b6304e48eb519c20a640f28055d7c9 |
plot.py |
100644 |
blob |
2807 |
1feb1d43e90e027f35bbd0a6730ab18501cef63a |
plotly_plot.py |
100644 |
blob |
110138 |
f4ef8295edbfd2509cc6026f797536baeb53a8f7 |
qt_plot.py |
100644 |
blob |
6304 |
7fc6ac75e415df43af5b7aa9d6d1848aa5d0963d |
reader.py |
100644 |
blob |
4284 |
a0e0b4e593204ff6254f23a67652804db07800a6 |
samplebox.py |
100644 |
blob |
5553 |
bac994ae58f1df80c7f8b3f33955af5402f5a4f3 |
sball.py |
100644 |
blob |
21623 |
281aef80556b8d22842b8659f6f0b7dab0ad71af |
shapeshare.py |
100644 |
blob |
41483 |
940b5c6b493930ce36f1792b0e3c81a022e8cb90 |
simplex.py |
100644 |
blob |
10317 |
b1c9dca82c5cc30c7b7aa5da2869c0bd131e409d |
stm_df.py |
100644 |
blob |
3411 |
526104441da7029c83ff7c5037ae6b0dbc9a118d |
testcases_2D.py |
100644 |
blob |
22048 |
4a6014ca5255aa96059ff9ed5a7e29df98d26ffc |
whitebox.py |
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"
Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/iam-git/WellMet
Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/iam-git/WellMet
Clone this repository using git:
git clone git://git.rocketgit.com/user/iam-git/WellMet
You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a
merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main