小编use*_*565的帖子

不使用Excel文件格式的原因:.xlsb始终

我想知道是否有理由不使用.xlsb文件格式,而不是.xlsx或.xlsm?

我看过这篇文章:什么时候应该使用xlsm或xlsb格式?

而且我自己也做了一些基本的测试,看起来二进制格式是优越的.所以我很想知道我是否应该一直使用.xlsb并告别.xlsx或.xlsm.在某个地方有捕获吗?

excel file-format

7
推荐指数
1
解决办法
2705
查看次数

iPython与不同的env(使用anaconda)

我刚刚使用anaconda(称为python35)创建了一个带有python 3.5的新环境.我的根env指向python 2.7.11.我似乎无法用这个新的env启动ipython,这就是我所做的

1. in conda prompt, activate required env: activate python35
2. confirm the version: python --version
3. launch ipython: ipython notebook
4. open a notebook and do: import sys; print (sys.version)
Run Code Online (Sandbox Code Playgroud)

步骤#2,返回3.5,但步骤#4总是给我2.7.11,就像ipython从root env中获取python版本.我该如何解决.谢谢你的帮助!

这个问题是相关的,但我已经完成了它的建议.

python ipython anaconda

6
推荐指数
2
解决办法
4146
查看次数

未应用 Seaborn 样式

我刚刚更新了 conda 并安装了 seaborn (v0.9.0)。然后启动 jupyter notebook 并尝试绘制一个 seaborn distplot,但奇怪的是它具有 matplotlib 风格!有人可以帮我用 seaborn 情节应用 seaborn 风格吗?

import seaborn as sns
%matplotlib inline
sns.distplot(tips['total_bill'])
Run Code Online (Sandbox Code Playgroud)

具有 matplotlib 样式的 Seaborn 图

python-3.x seaborn

5
推荐指数
1
解决办法
1399
查看次数

Excel:如何从VbScript调用工作表模块中的函数

Using VBScript, I'm trying to run a subroutine that resides in one of the code modules. Now this particular sub calls several other subs/functions, including few that reside on the sheet modules. And on calling these subs residing in Sheet Modules, I get can error:

"Sub or Function undefined!"
Run Code Online (Sandbox Code Playgroud)

How can I get around this? There are a lot of such functions and I don't want to move all of them from Sheet modules to code modules. Is there a …

vbscript excel vba excel-vba

3
推荐指数
1
解决办法
5657
查看次数