0
Q
如何通過點擊R
A
回答
6
試試這個:
set.seed(123)
y <- runif(9)
x <- runif(9)
# 1. Numbers 1-9 appear on the screen for some time
plot(x, y, pch = as.character(1:9),
xlab = "", ylab = "",
xaxt = "n", yaxt = "n",
xlim = c(-0.05, 1.05), ylim = c(-0.05, 1.05))
Sys.sleep(3)
# 2. Black boxes replace numbers and now one is allowed to click on them
for(i in 1:9) {
plot(x[i:9], y[i:9], pch = 15, cex = 3,
xlab = "", ylab = "",
xaxt = "n", yaxt = "n",
xlim = c(-0.05, 1.05), ylim = c(-0.05, 1.05))
ans <- identify(x, y, n = 1, plot = FALSE)
if(ans != i){
cat("Game over")
break
}
}
+0
謝謝。答案是「識別」。 – Choijaeyoung
相關問題
- 1. 如何通過點擊
- 2. 如何通過gtk.Window點擊?
- 3. 如何通過點擊
- 4. 如何通過點擊
- 5. AngularJS:如何通過點擊
- 6. 如何通過點擊QPushbutton
- 7. 如何通過點擊通知
- 8. 通過點擊
- 9. 通過點擊
- 10. 通過點擊
- 11. 通過點擊
- 12. 如何通過數據點中的R
- 13. 如何通過點擊這是JS
- 14. 如何通過點擊一個按鈕
- 15. 如何使VLC點擊通過
- 16. 如何通過點擊一個按鈕
- 17. 如何通過編碼點擊按鈕?
- 18. js,如何通過點擊事件?
- 19. 如何通過點擊一個按鈕
- 20. 如何訪問,通過點擊按鈕
- 21. 如何通過點擊在div
- 22. 如何通過點擊按鈕
- 23. 如何通過點擊小工具
- 24. 如何通過點擊按鈕
- 25. 如何通過點擊「添加」按鈕
- 26. Android如何通過點擊按鈕
- 27. 如何通過點擊一個JButton
- 28. 如何通過點擊一個JButton
- 29. 我如何通過點擊按鈕
- 30. 如何通過點擊答案/ DIV
不知道你問什麼在這裏,但'identify'會讓你讀取用戶的鼠標點擊? –
或者查看'tcltk'包中的畫布小部件。 – Thomas
這是一個很好的問題,有一個很好的答案。我不明白爲什麼它關閉。 –