问题标签 [apple-numbers]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
191 浏览

python - Re-Creating Polynomial From Apple's Numbers App in Python

I am currently working on finding polynomial equations to describe data sets (simple tables with one x and one y value) in Python. I need a polynomial equation to describe the data set so that given a number x I can derive it's y value.

If I enter these data sets into Apple's Numbers app and plot them on a graph, I can get a very helpful polynomial equation that predicts my y values very accurately for my purposes. However, when using Numpy to derive a polynomial equation with the same data set, I am given a very different polynomial equation that makes incredibly inaccurate predictions. I want my Python program to create polynomial equations that are much closer to the ones produced by the numbers app.

Some specifics:

My x values (x_list): 3.75652173913043, 3.79130434782609, 3.82608695652174

My y values (y_list): 0.0872881944444445, 0.0872522935779816, 0.0858840909090909

My polynomial from Numbers: y = -0.5506x^2 + 4.1549x - 7.7508

My polynomial from Numpy: y = -7.586x^2 + 57.53x - 108.7

How I'm using Numpy: polynomial = numpy.poly1d(numpy.polyfit(x_list, y_list, deg=2))

My numbers in Python are rounded to 8 decimal points, but I think the discrepancy is too large for it to be a rounding issue.

In short, I am wondering how Numbers would have derived this polynomial vs. how Numpy would have, and how I can replicate the Numbers method, ideally without using Numpy. (I am going to have to translate my program from Python to Swift eventually.)

0 投票
3 回答
1312 浏览

right-to-left - 从右到左支持 Apple Numbers 应用

如何在 Numbers 应用程序中创建具有从右到左支持的工作表(右侧的标题列,右侧的冻结列...)?

我尝试使用 RTL 表导入 Excel 文件,但它被应用程序反转为 LTR。

请不要建议使用其他应用程序,如 Excel 或一些开源应用程序,我想使用 Numbers 应用程序。

我使用 Mac Numbers 版本 3.6.2(2016 年 5 月 13 日)。

谢谢。

0 投票
2 回答
66 浏览

excel - Apple Numbers - 如何确保单元格永远不会低于零

我用苹果数字创建了一个电子表格,第三个单元格是 1 和 2 之间的差异。如果第二个数量大于第一个数量,我如何确保第三个单元格永远不会低于零?

£650.00 £100.00 £550.00

非常感谢您的帮助

大卫

0 投票
1 回答
1773 浏览

csv - Applescript 无权保存文件

我正在尝试编写一个将.numbers文档转换为.csv文档的脚本。它需要可以从命令行执行,以便我可以在预提交 git 挂钩中使用它。

我编写了一个 AppleScript 来获取数字文件的路径并将其导出为 CSV,但实际导出将无法正常工作,因为“您没有权限。(6)”。我认为这与沙盒有关,但我不能使用 AppleScript 来弹出文件选择器,因为这需要完全自动化。

如何授予我的 AppleScript 导出到此文件的权限?

完整的错误信息是 export_numbers_to_csv.scpt:604:676: execution error: Numbers got an error: The document “DisplayPlusButtonTestScripts.numbers” could not be exported as “DisplayPlusButtonTestScripts”. You don’t have permission. (6)

我的调用osascript export_numbers_to_csv.scpt /Users/me/Test\ Scripts/MyTests.numbers来自工作目录/Users/me/

我确实有权写入我要求脚本写入的目录。我还尝试导出到临时目录(通过path to temporary items from user domain),但得到了相同的错误消息。

0 投票
1 回答
628 浏览

applescript - JXA:如何在 Numbers.app 的文档中制作新工作表

我正在使用 JXA 使用 Numbers 应用程序自动化流程。在现有文档中创建新工作表的语法是什么?

AppleScript 等价物是:

谢谢!

0 投票
1 回答
18 浏览

macos - 自动匹配唯一字符串并使用来自另一个 CSV 的数据填充它

我不知道正确的术语是什么,但我只想用来自另一个 csv 的数据填充一个新列。

例如,我有一个新列的数据,我们称它为 CSV 1(第 3 列为空白)。

然后我有这些值的单独 CSV,我们称之为 CSV 2:

等等...

如何自动填充第一个 CSV 文件以匹配我拥有的第二个 CSV 文件中的 SKU 列?

PS:我在 Mac OS X 上使用 Numbers。

0 投票
1 回答
1018 浏览

apple-numbers - 获取一年中所有星期日的日期的公式

我正在尝试创建一个电子表格,其中包含周日的所有日期在一列中。我该怎么做呢?我尝试过使用DAYVALUE(1),但无法返回日期。

0 投票
1 回答
288 浏览

html - 将 Excel 或 Numbers (mac) 超链接转换为 html a 标签

我正在尝试将 Excel、Word 或 Numbers 超链接转换为 HTML<a>标记。

例如,我有 [linkName] 并且需要 <a href='URL'>[linkName]</a>.

有任何想法吗?谢谢你。

0 投票
1 回答
1280 浏览

date - Apple Numbers:将日期格式 M/D/YY 或 D/M/YY 转换为 YYYY-MM-DD

注意:我有这个问题,找不到答案,可以自己提供答案。我希望这也可以被其他人使用。

使用 Apple Numbers,如何使用公式将日期格式转换为M/D/YYto ?YYYY-MM-DD

月/日/年示例:

  • 12/31/17»2017-12-31
  • 1/1/17 »2017-01-01

日/月/年示例:

  • 31/12/17»2017-12-31
  • 1/1/17 »2017-01-01
0 投票
1 回答
36 浏览

apple-numbers - Excel 或 Numbers,如何填充相邻列?

表格图像

所以我觉得这是一个非常简单的问题,但我无法在这里或其他地方找到答案。

我正在尝试使用自定义文本自动填充列。我想这将是相邻的行。

认为 vlookup 是解决方案,但我生疏了。

基本上它是财务的,如果描述包含“亚马逊”或“地铁”,我想用“亚马逊”或“在线购物”或“地铁”或快餐填充相邻的单元格。

我使用的是数字,但假设 excel 建议适用于这样一个简单(看似)的任务。

说得通?

另外,希望我正确格式化了图像。

好,谢谢!