/plot.py (14e91bd579c101f1c85bc892af0ab1a196a165a0) (896 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
def empty_plot(sample_box, *args, **kwargs):
print("Plot: žel bohu, nič vám nakrelsiť nemůžu")
# кулэ ӧвӧл
# for python3.7
#def __getattr__(attr):
# return empty_plot
plot2D = empty_plot
plot3D = empty_plot
show2D = empty_plot
show3D = empty_plot
tri_estimation_graph = empty_plot
#
# optional dependences
#
try:# gnuplot
from . import gp_plot
plot2D = gp_plot.gp_plot
except:
pass
try:# plot.ly
from . import plotly_plot
tri_estimation_graph = plotly_plot.tri_estimation_graph
except:
pass
try:# matplotlib
from . import mplot
plot3D = mplot.plot3D
except:
pass
try: # pyqtgraph
from . import qt_plot
show2D = qt_plot.qt_gui_plot_2d
except:
pass
from . import qt_plot
show2D = qt_plot.qt_gui_plot_2d
Mode |
Type |
Size |
Ref |
File |
100644 |
blob |
10887 |
b53080c965974cd446104f9cf6d8c7bd84fe8416 |
IS_stat.py |
100644 |
blob |
6 |
0916b75b752887809bac2330f3de246c42c245cd |
__init__.py |
100644 |
blob |
26416 |
ff508c43d9527b7357c7c32098fd93f42cf509c3 |
blackbox.py |
100644 |
blob |
13752 |
374874f5b3a786880e452f819c4e934437c68562 |
f_models.py |
100644 |
blob |
27159 |
eb3a87892b1d197f21d78f519ef93d86ca86c4ed |
g_models.py |
100644 |
blob |
2718 |
5d721d117448dbb96c554ea8f0e4651ffe9ac457 |
gp_plot.py |
100644 |
blob |
10489 |
1f6dd06a036fdc4ba6a7e6d61ac0b84e8ad3a4c1 |
mplot.py |
100644 |
blob |
896 |
14e91bd579c101f1c85bc892af0ab1a196a165a0 |
plot.py |
100644 |
blob |
2807 |
1feb1d43e90e027f35bbd0a6730ab18501cef63a |
plotly_plot.py |
100644 |
blob |
4140 |
8424b23d655353e889eeed8f65be438a7eb32cbb |
qt_plot.py |
100644 |
blob |
6251 |
fc18a41a14682b505a10a2947cfd6fdbea4c59cd |
reader.py |
100644 |
blob |
4228 |
278bfa08534fcbdf58652edf636fb700395a5f1d |
samplebox.py |
100644 |
blob |
5553 |
bac994ae58f1df80c7f8b3f33955af5402f5a4f3 |
sball.py |
100644 |
blob |
21563 |
c9f8f898feec1fbcb76061bb3df981ce6e455049 |
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