Subject | Hash | Author | Date (UTC) |
---|---|---|---|
qt_gui.qt_plot.CandidatesWidget: regression fix | a75874b5a53e7b420672b582f3ff415b17a32e9b | I am | 2022-12-23 12:19:51 |
qt_gui.qt_pairwise.ContactWidget: add mask function | 6f88fec7db92e5cd21826a06f42a609a3e03cb6b | I am | 2022-12-21 15:20:01 |
qt_gui.qt_pairwise.ContactWidget: add option for mixed pairs only adjacency search. | 2f87e8a18908de607b8abc0779448ca3095c134c | I am | 2022-12-21 14:30:23 |
qt_gui.qt_dicebox: reflect changes in CircumTri class | 9821d389240a383f0b13b7dd92cd501e1c40c537 | I am | 2022-12-15 09:36:16 |
dicebox.circumtri: employ _Exploration class. Keep naive CircumTri class in renamed module | b8605fb24d55b3296ceac34afba541a5b7ee3070 | I am | 2022-12-15 09:33:59 |
convex_hull.QHull.get_exploration_vector: self -> hull fix | dae47ef37b5871a98d2ea274cc35aeb2a4eebe1c | I am | 2022-12-15 09:30:31 |
qt_gui/qt_dicebox: add DumpExplorationWidget | b687895f06c780418a12eea59bd052ad7cd348f3 | I am | 2022-12-15 01:31:14 |
dicebox: add helper _exploration module | 836ae6cd12f1a04f1e2fc3423e46777d16ebad7d | I am | 2022-12-15 01:30:20 |
convex_hull: add get_exploration_vector() method | 795259d91b64c732e60a83a1d9e3b89c2141b003 | I am | 2022-12-15 01:28:12 |
qt_gui.qt_gui: dot not create graph widgets if estimations are not present | f070ed140a135a980e4436ed3779455c0e1bf399 | I am | 2022-12-14 02:25:45 |
qt_gui.gl_plot.CandidatesWidget: apply changes for GLplot too | 03550040b60c67d247e26425e35fac565dd88886 | Aleksei Gerasimov | 2022-12-14 01:56:01 |
qt_gui.qt_plot.CandidatesWidget: add CandyNodes support | 2357cdd92170b1f660b15c92aec695d3f7c108b3 | I am | 2022-12-14 01:08:30 |
qt_gui.qt_graph_widgets.EstimationGraph: reimplement piece of zerosafe logic | 342a1b7bfddb7ba5695b3f0e017c7f75811db1f0 | I am | 2022-12-13 22:15:54 |
qt_gui.qt_graph_widgets: update x range when box runned | c52052a9c3f6926d03e8c39f7642aa0a8864fdc3 | I am | 2022-12-13 10:23:45 |
qt_gui.qt_graph_widgets.EstimationGraph: add outside and mixed lines | df6c06e4287492855d613b1ae46edfca6a4757d3 | I am | 2022-12-12 06:13:55 |
qt_gui: replace old copypaste by cleaned up EstimationGraph | 515d0d8a892984f8a7667da874972daff3318d74 | I am | 2022-12-12 05:36:43 |
qt_gui: prepare new BoxEstimationData class; rework ErrorGraph | 37387100715f980771a8a37f99eec3e723759cd3 | I am | 2022-12-11 23:17:06 |
dicebox.circumtri: replace ndim by nvar to make TriEstimation pandas-friendly | 0824222ae4c9c1f3fede971481816ed9ded9707a | I am | 2022-12-11 23:14:05 |
step back: introduce box_estimations, keep "estimations" for user ones | dde983d57423e28083980cbae05f0a81fc8311e6 | I am | 2022-12-10 03:54:09 |
simplex.BetterCubatureIntegration: hotfix | f8a607e5d60c591eb81037010717519c1fe6e993 | I am | 2022-12-08 00:29:57 |
File | Lines added | Lines deleted |
---|---|---|
wellmet/qt_gui/qt_plot.py | 1 | 1 |
File wellmet/qt_gui/qt_plot.py changed (mode: 100644) (index fb217a5..116d95c) | |||
... | ... | class CandidatesWidget(pg.LayoutWidget): | |
2288 | 2288 | def get_items_from_nodes(nodes): | def get_items_from_nodes(nodes): |
2289 | 2289 | try: | try: |
2290 | 2290 | #č predpokladam pandas verzi CandyBox'u | #č predpokladam pandas verzi CandyBox'u |
2291 | return list(nodes.columns) | ||
2291 | return list(nodes.df.columns) | ||
2292 | 2292 | except: | except: |
2293 | 2293 | #č CandyNodes? | #č CandyNodes? |
2294 | 2294 | return list(nodes.kwargs.keys()) + list(nodes.attrs.keys()) | return list(nodes.kwargs.keys()) + list(nodes.attrs.keys()) |