我想读取数据并绘制动态图, 所以我用PyQt5学习matplotlib。 我找到了例子,但它适用于PyQt4,there 我将它修改为PyQt5,但它有一些问题, 当我点击开始按钮时,它会显示错误
res <- merge(data.frame(weeknumber = unique(prova$weeknumber)),
aggregate(sent~weeknumber, prova, subset = processed ==0, FUN = sum),
all.x=TRUE)
res$sent[is.na(res$sent)] <- 0
res
# weeknumber sent
#1 1 23
#2 2 1562
#3 3 0
这是我的代码:
@Html.EditorFor(model => model.Description, new { htmlAttributes = new { @readonly = "readonly" } })
答案 0 :(得分:1)
我有同样的问题,这很有用。 你必须先安装numpy -11.1 + mkl(http://www.lfd.uci.edu/~gohlke/pythonlibs/), 然后安装matplotlib(http://www.lfd.uci.edu/~gohlke/pythonlibs/#matplotlib)模块,然后它可以正常工作。