Skip to content
Snippets Groups Projects
Commit 4d7e7b46 authored by Theo Steininger's avatar Theo Steininger
Browse files

Deactivated the plotly stuff in the wiener_filter.py

parent e4dcb089
No related branches found
No related tags found
No related merge requests found
Pipeline #
from nifty import *
import plotly.offline as pl
import plotly.graph_objs as go
#import plotly.offline as pl
#import plotly.graph_objs as go
from mpi4py import MPI
comm = MPI.COMM_WORLD
......@@ -50,8 +50,8 @@ if __name__ == "__main__":
d_data = d.val.get_full_data().real
m_data = m.val.get_full_data().real
ss_data = ss.val.get_full_data().real
if rank == 0:
pl.plot([go.Heatmap(z=d_data)], filename='data.html')
pl.plot([go.Heatmap(z=m_data)], filename='map.html')
pl.plot([go.Heatmap(z=ss_data)], filename='map_orig.html')
# if rank == 0:
# pl.plot([go.Heatmap(z=d_data)], filename='data.html')
# pl.plot([go.Heatmap(z=m_data)], filename='map.html')
# pl.plot([go.Heatmap(z=ss_data)], filename='map_orig.html')
#
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment