R语言 播放哔哔声–beep()函数
R语言中的 beep() 函数用于在R语言中发出哔哔声。
在这篇文章中,我们将进一步研究这个函数如何实现它,它的应用,以及使用这个函数的一些不同方法。
语法: beep()
参数:
1: ping
2: coin
3: fanfare
4: complete
5: treasure
6: ready
7: shotgun
8: mario
9: wilhelm
10: facebook
11: word
例1:播放哔哔声
# R program to illustrate
# beep sound
# Install beepr package
install.packages("beepr")
# Load beepr package
library(beepr)
beep()
输出
This will play a ping sound.
在上面的代码中,我们为beep()函数安装了beepr包,然后创建了一个ping的声音。
如果我们不选择任何参数,声音将是1,即ping。
例2:播放特定的声音
# R program to illustrate
# beep sound and play a specific sound
# Install beepr package
install.packages("beepr")
# Load beepr package
library(beepr)
beep(5)
输出
treasure
在上面的代码中,我们用beep函数指定了5,所以它将播放一个宝藏的声音。
例3:播放随机声音
# R program to illustrate
# beep sound and play a specific sound
# Install beepr package
install.packages("beepr")
# Load beepr package
library(beepr)
beep(0)
输出
Random Sound
在上面的代码中,我们在beep函数中指定了0,这意味着该函数将播放任何随机声音。
应用
- 这种哔哔声可以在任何错误中使用。
- 这些声音可以用在程序的成功上。
- 这些声音可以用作程序的失败。
- 这些声音可以作为任何程序完成时使用。