本文介绍了模块4/ValueError:追溯的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在可视化数据(Python)实验4中
In Visualizing Data(Python) Lab 4
遇到错误.请提出建议.
Error encountered. Please suggest.
/home/nbuser/anaconda3_23/lib/python3.4/site-packages/matplotlib/font_manager.py:273: UserWarning: Matplotlib is building the font cache using fc-list. This may take a moment.
warnings.warn('Matplotlib is building the font cache using fc-list. This may take a moment.')
/home/nbuser/anaconda3_23/lib/python3.4/site-packages/matplotlib/font_manager.py:273: UserWarning: Matplotlib is building the font cache using fc-list. This may take a moment.
warnings.warn('Matplotlib is building the font cache using fc-list. This may take a moment.')
推荐答案
请尝试以下操作:
从azureml导入工作区
ws =工作区(workspace_id ='**您的工作空间ID **',
authorization_token ='"您的AUTH TOKEN代号")
ds = ws.datasets [ '汽车价格数据(原始) ']
frame = ds.to_dataframe()
from azureml import Workspace
ws = Workspace(workspace_id='**YOUR WORKSPACE ID**',
authorization_token='"YOUR AUTH TOKEN NUMBER"')
ds = ws.datasets['Automobile price data (Raw)']
frame = ds.to_dataframe()
如果仍然遇到错误,请告诉我.
Tell me if you still suffer from the error.
此致
宇通
这篇关于模块4/ValueError:追溯的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!