Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Python Module Filebox | |
import numpy as np | |
import pandas as pd | |
import matplotlib.pyplot as plt | |
def load_file(filename): | |
df=pd.read_csv(filename) | |
df.plot(x=df.columns[0],y=df.columns[1]) | |
plt.show() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ipywidgets as widgets | |
import fileplot | |
path=widgets.Text( | |
value=raw_input("Enter the Path Csv File You Want to Plot here : "), | |
#placeholder="File Path", | |
#descrition="String:", | |
#disabled=False | |
) | |
button=widgets.Button( |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from starkit.gridkit import load_grid | |
import h5py | |
import numpy as np | |
#print dir(plt) | |
grid =load_grid('C:\Users\pabla\OneDrive\Documents\p.h5') | |
grid | |
import matplotlib.pyplot as plt | |
OlderNewer