作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对于作业,我们需要在 R 中绘制一棵圣诞树。
我在互联网上搜索并找到了一些有用的建议,但归根结底,我不知道如何继续,希望有人能帮助我。
到目前为止,这是我的代码。
#ctree: prints a Christmas tree on screen with size N
ctree <- function(N){
for (i in 1:N){
width = sample("*",i,replace=T)
cat(width,sep="-","\n")
}
cat(width[1],"\n")
}
*-
*-*-
*-*-*-
*-*-*-*-
*
最佳答案
对于任何感兴趣的人:这就是我最终在 R 中做的事情来创建一棵圣诞树。
#ctree: prints a Christmas tree on screen with amount of branch levels N
ctree <- function(N){
filler = "*"
blank = ""
for (i in 1:N){
row = c(sample(blank,N-i,replace=T),sample(filler,i,replace=T),sample(blank,N-i,replace=T))
cat(row,"\n")
}
cat(c(sample(blank,(N-1),replace=T),sample(filler,1,replace=T),sample(blank,(N-1),replace=T)),"\n")
} #ctree
关于R:圣诞树,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25893689/
我是一名优秀的程序员,十分优秀!