我有以下代码。它使用Matplotlib wrapper in Pandas:
$("#tb2").focusout(function(){
$.ajax({
type:'POST',
url: 'validURL',
context : this,
data: {various_parameters},
contentType: 'application/json; charset=utf-8',
dataType:'json',
success: function(data){
validInput(data, $(this));
},
error: error
});
});
这就是这个数字:
如上所述。如何将import pandas as pd
import io
import matplotlib
import matplotlib.pyplot as plt
test=u"""Cell,Value
Bcells,0.056304
DendriticCells,0.3155388
Macrophages,0.131430
"""
tableau10=[ "#17BECF", "#BCBD22", "#7F7F7F", ]
toplot_df = pd.read_csv(io.StringIO(test))
toplot_df.set_index('Cell',inplace=True)
xlabels = toplot_df.index.values
barplot = toplot_df.plot(kind="bar", figsize=(17,17), \
color = tableau10, \
width=0.7,\
fontsize = 30,\
legend=False,
ylim = (0,0.5),
subplots=False)
ax = plt.gca()
ax.set_xticklabels(xlabels, rotation=30, ha='right')
# How to to make this to the back
plt.axhline(y=0.1, linewidth=1, color='r',zorder=1)
plt.xlabel("")
plt.ylabel("Score", fontsize=30, fontweight="bold")
设为后台?
我试过了axhline
但却没有工作。