我在Mac OS X Sierra上使用Jupyter Notebooks(通过Anaconda)。现在,我想访问保存在我的iCloud Drive中的笔记本。但是,我一直无法找到通过Juypter界面访问iCloud的方法。我当然可以使用“上传”按钮上传文件,但不能直接访问iCloud中的文件,我更希望这样做。我怎样才能做到这一点?
我想找到一种方法来自动包装 ggplot 标题(或副标题或标题)以占据整个绘图宽度然后换行。
一个先前的问题与如何很好地使用包装函数来包装的代码,但你仍然有交易指定width=手动。如何重写此包装函数以根据绘图的绘图宽度自动包装文本?
到目前为止我的代码:
wrapper <- function(x, ...) {
paste(strwrap(x, ...), collapse = "\n")
}
library("ggplot2")
my_title <- "This is a really long title of a plot that I want to nicely wrap and fit the plot width without having to manually add the backslash n, or having to specify with= manually"
ggplot(data = cars, aes(x = speed, y = dist)) +
geom_smooth() +
labs(title = wrapper(my_title, width = 100))
Run Code Online (Sandbox Code Playgroud)
我的想法:以某种方式从 ggplot 中提取绘图宽度,然后将其包含在包装函数中,可能是这样的:
plot_width <- …Run Code Online (Sandbox Code Playgroud) 如何使用reveal.js 在我的四开本演示文稿标题幻灯片的左上角添加小徽标?
有关 Quarto/reveal.js 演示文稿的信息:https://quarto.org/docs/presentations/