i'm writing python on spyder. please see code below:
import pandas pd data = pd.io.excel.read_excel('data.xls') cmt_column = data['cmt'] "data" contains column called "cmt." i'm trying create variable called "cmt_column" contains values of "cmt" column.
here's problem. after run code, "data" appears in variable explorer. "cmt_column" not there. if call "cmt_column" in ipython console, shows values of "cmt" expected. guess variable has been created after all, why not visible in variable explore?
thanks in advance help.
go variable explorer window.
then have options button right hand side.
click on it,untick option exclude uppercase preferences shown in image.

Comments
Post a Comment