मैं एक ऐसी ही सवाल मैंने पूछा जो था मैं कैसे आर के लिए पासा कर सकते हैं करने के लिए एक प्रतिक्रिया मिली? प्रतिक्रिया "अंतरंग पासा" के लिए एक कार्यक्रम के अलावा आर के लिए एक कार्यक्रम था। मुझे यकीन नहीं है कि एलिस और बॉब में कौन दिलचस्पी है, लेकिन मैं रिमोट डेस्कटॉप के अलावा आर का उपयोग करने का सुझाव देता हूं ताकि प्रत्येक खिलाड़ी देख सके कि दूसरा धोखाधड़ी नहीं कर रहा है। http://cran.r-project.org/:
आप इसे यहां से डाउनलोड करके सांख्यिकीय कार्यक्रम आर प्रारंभ में पासा बनाना चाहते हैं:
मैं कोड लिखने के लिए कैसे तो मैं कॉपी/प्रतिक्रिया चिपकाया मुझे प्राप्त हुआ है पता नहीं है। #Dice रोल समारोह RollDie = समारोह (एन) नमूना:
एक सामान्य पासा निम्न स्क्रिप्ट का उपयोग करने के लिए (1: 6, एन, की जगह = टी) मरो #use RollDie (एन)
#If you'd like to spice things up a bit and make a dice for safe and consensual adult
#activities then use the following series of scripts:
#Creating the function, use this script:
#Intimate dice function
Actions= c("kiss","lick","suck","bite",
"spank","blow", "stroke",
"tickle","pinch",
"torment")
Body= c("lips","arms","chest","thighs",
"neck","ear", "wrist",
"navel","nipples",
"the good stuff")
Action= function(n) sample(Actions[1:10],n,replace=T)
Area= function(n) sample(Body[1:10],n,replace=T)
Action(1)
Area(1)
#If you'd like the dice saved to the R global environment so you can be ready for when
the mood is right use the following script:
#Save the following script as yourfile.R in something like this location "C:\\Documents
and Settings\\yourfile.R"
#Intimate dice
Action(1)
Area(1)
#yes
#Now create the following function to save to R's global environment with the following:
#Run all
source("C:\\Documents and Settings\\yourfile.R",echo=T)
hi<-function(){source("C:\\Documents and Settings\\yourfile.R",echo=T)}
#ok
#close and save your R workspace
#upon opening run the following function:
hi()
#If this has been done properly then you should see something along the lines of this:
#Intimate dice
Action(1)
[1] "bite"
Area(1)
[1] "ear"
#yes
#Here's to one more reason for celebrating math & science
आपका उत्तर क्या था? –
@Justin मॉर्गन: वह सिर्फ प्रश्न पूछा 2 मिनट पहले, उसे एक पल दे ... –
बस देखा जैसे वह उस में पेस्ट करने के लिए भूल गया, कि सब :) –