Calysto / matlab_kernel

Jupyter Kernel for Matlab
Other
469 stars 76 forks source link

Support table? #115

Open Losses opened 6 years ago

Losses commented 6 years ago

If I print a table to the notebook, it'll show a lot of string but not a html table like what DataFrame in pandas did, could this feature be supported?

dsblank commented 6 years ago

Can you post some sample code demonstrating the issue?

Losses commented 6 years ago

MATLAB Kernel

code:

readtable("./data/case_list.csv");

result: annotation

Python Kernel, pandas DataFrame

code:

pd.read_csv('./data/case_list.csv'))

result: annotation pandas