复制链接
克隆策略
In [1]:
data_x = ["上证综指",'沪深300',"上证50指数","深证成指","科创50指数","创业板指","中证500"]
data_y = [-3.81,-4.07,-5.14,-3.47,-2.88,-2.03,-3.24]
options = {
      'chart': {
        'type': 'columnrange',
        'inverted': 'true'
    },
    'title': {
        'text': '股票收益指数'
    },

    'xAxis': {
        'categories': data_x
    },
    'yAxis': {
        'title': {
            'text': ''
        }
    },
    'legend': {
        'enabled': 'false'
    },
    'series': [{
        'name': '收益率(%)',
        'data': data_y
    }]
}
df = pd.DataFrame()
T.plot(df,options=options)