讲解:Stats 102A、R、R、script fileR|SPSS

Stats 102A - Homework 4 Instructions: MonopolyHomework questions and instructions copyright Miles Chen, Do not post, share, or distribute without permission.Homework 4 RequirementsYou will submit three files.The files you submit will be:1. 102a_hw_04_script_First_Last.R Your R script file containing the functions you write for the homeworkassignment. Write comments as necessary.2. 102a_hw_04_output_First_Last.Rmd Take the provided R Markdown file and make the necessary edits sothat it generates the requested output. The first line of your .Rmd file should be to source the R script file youwrote.3. 102a_hw_04_output_First_Last.pdf Your output PDF file. This is the primary file that will be graded. Makesure all requested output is visible in the output file.Failure to submit all files will result in an automatic 40 point penalty.Academic IntegrityAt the top of your R markdown file, be sure to include the following statement after modifying it with your name.“By including this statement, I, Joe Bruin, declare that all of the work in this assignment is my own original work.At no time did I look at the code of other students nor did I search for code solutions online. I understand thatplagiarism on any single part of this assignment will result in a 0 for the entire assignment and that I will be referredto the dean of students.”If you collaborated verbally with other students, please also include the following line to credit them.“I did discuss ideas related to the homework with Josephine Bruin for parts 2 and 3, with John Wooden for part 2,and with Gene Block for part 5. At no point did I show another student my code, nor did I look at another student’scode.”Recommended Reading:a. S3 (not necessary for this HW): https://adv-r.hadley.nz/s3.htmlb. R6: https://adv-r.hadley.nz/r6.htmlMonopoly Board game simulationFor this homework assignment, you will create a simulation of the classic board game,Monopoly. The goal is to find out which spaces on the board get landed on the most.You will not simulate the entire game. You will simulate only the movement of pieces, and will keep track of whichsquares the pieces land on.You can familiarize yourself with the game board. (Taken from Amazon’s product page.)http://ecx.images-amazon.com/images/I/81oC5pYhh2L._SL1500_.jpgOfficial rules https://www.hasbro.com/common/instruct/monins.pdf1Rules for movementThe Monopoly Board is effectively a circle with 40 spaces on which a player can land. Players move from space tospace around the board in a circle (square).The number of spaces a player moves is determined by the roll of 2 dice. Most often, the player will roll the dice, landon a space, and end his turn there. If this were the entire game, the spaces would have a uniform distribution aftermany turns.There are, however, several exceptions which provide the primary source of variation in space landing.Go to JailOne space, “Go to Jail” sends players directly to jail (there is a jail space on the board). This space never counts ashaving been ‘landed upon.’ As soon as the player ‘lands’ here, he is immediately sent to jail, and the jail space getscounted as landed upon. This is the only space on the game board that moves a player’s piece. The count of howoften this space is landed on will always be 0.Rolling DoublesIf a player rolls doubles (two of the same number), the player moves his piece, and then gets to roll the dice again foranother move. However, if a player rolls doubles three times in a row, he is sent directly to jail. (The third space thatthe player would have ‘landed on’ does not count, but the jail space gets counted as landed on.)Card Decks: Chance and Community ChestA player can land on a “Chance” or “Community Chest” space. When a player lands on these spaces, he draws acard from the respective deck and follows its instructions. The instructions will sometimes give money to or takemoney from the player with no change in the player’s position on the board. Other times, the card will instruct theplayer to move to another space on the board. The list of cards that can be drawn from each deck is provided.There are nine cards in the Chance deck that move the player’s token. There are two cards in the Community Chestdeck that move the player’s token. All other cards do not move the player’s token. For the sake of this simulation,you only need to program actions for the cards that move the tokens. There is no need to do anything for ‘get out ofjail’ or any of the other cards.A card may say ‘move to the nearest railroad’ or ‘move to the nearest utility’ or even ‘go to property . . . ’. In thesecases, the player always moves forward. So if a player is on ‘Oriental Avenue,’ the nearest railroad is ‘PennsylvaniaRailroad’ and NOT ‘Reading Railroad.’For the sake of this simulation, the Chance and Community Chest get counted as landed on when the playerlands on the Chance or Community Chest space. The player may also generate another count if the card moves theplayer to another space on the board. In those cases, a tally is counted for the Chance/Community Chest space, thetoken is moved, and then a tally is counted for the space where the player ends his turn.JailJail is the most complicated aspect of this simulation.If a player lands on space 11 (Jail) simply from rolling the dice, he is not in Jail. He is ‘just visiting’ jail. He generatesa tally for landing on jail, and his play continues on as normal.A player can be sent to jail in several ways:• he rolls doubles three times in a row;• he lands on the “go to jail” space;• he draws a card that sends hims to jail.As soon as the player is sent to jail, his token moves to jail (space 11), he generates a count for landing on jail, andhis turn ends immediately.2On the next turn, the player begins in jail and the player will roll the dice. If he rolls doubles on the dice, he gets outof jail and moves the number of spaces the dice show. However, even though he rolled doubles, he does NOT rollagain. He takes his move out of jail and his turn ends. If he does not roll doubles, he stays in jail.A player cannot stay in jail for more than three turns. On the third turn he begins in jail, he rolls the dice and movesthe number of spaces the dice show no matter what.Play then continues as normal.For this simulation, each time a player ends his turn in Jail, a tally will be counted as having been ‘landed upon.’There are more rules on jail that include paying a fee to get out early, or using a get out of jail free card. We will notimplement those rules. We will simply simulate a ‘long stay’ strategy for Jail. This means that the player will neverpay the fee to get out jail early. He will roll the dice and only leave jail if he gets doubles or it is his third turn in jail.The AssignmentYour assignment is to implement the rules of Monopoly movement.You must use R6 to createStats 102A作业代做、代做R课程设计作业、代写R程序语言作业、代写script file作业 代做R语言编程|代 an object class Player which will be used to keep track of a player.Part 1You will first demonstrate that you have coded the rules by showing the output of the first 20 turns using the presetdice. Your output for this section should match the published results exactly.The output should be very verbose. It should announce the player roles, where the player moves, what spaces gettallies, if they rolled doubles, etc.Part 2The next part is to run 1,000 simulations of a two-player game that lasts 150 turns. This is a total of over 3 hundredthousand tosses of the dice - 1000 games x 150 turns x 2 players + additional rolls if the player gets doubles.Your task is to keep track of where the players land. We ultimately want to build a distribution showing whichspaces are most likely to be landed upon. Advance the tokens around the board according to the rules. Keep in mindthe special situations involving the cards, jail, and rolling doubles. After 150 turns, reset the game and start over.Simulate 1000 games.Your final output will be two tables of the spaces on the board and their frequencies. Each table will show the spacename, how many times the space was landed upon, and the relative frequency of landing on that space.The first table is arranged in descending order of frequency of landing. (Jail should be #1, Go to jail should be last.)The second table is arrange in the order of the spaces on the board. (Go will be #1, Boardwalk will be last.)Also print a bargraph showing the frequency of how often each space is landed on.You do not have to simulate or track money at all in this simulation.Starter CodeFor your convenience, I have created the necessary data frames for the game board, and the two decks of cards.I have also created several helper R6 classes for you:• PresetDice: You will use this for Part 1: showing the movement of the player for 20 turns• RandomDice: You will use this for Part 2: the simulation of 1000 games.• CardDeck: For creating the Chance and Community Chest decks. This reference class ‘shuffles’ the deck, andeach time a player draws a card, it shows the next card drawn. When all the cards in the deck have been used,it ‘shuffles’ the deck again.Please take the time to read through these R6 class definitions. Understanding the definitions, and what the methodsdo will be helpful in completing the assignment.3TipsAt first blush, the task may seem overwhelming.• Break the task into smaller manageable parts.• Start with a simulation that moves pieces around the board and keeps track of where they land. (I’ve done thispart for you in my example code.)• Then add complexity one part at a time. Each time you add something, thoroughly test it to make sure itbehaves the way you want it to.• The PresetDice reference class will be very helpful in your testing. For example, you can intentionally createsome dice rolls to test certain situations. What to test if Chance is working correctly? Set your dice to causethe player to land on Chance. Want to test if doubles is working correctly? Set the PresetDice to producedoubles. If you had purely random dice, you might have to wait for the computer to produce many manyrandom outcomes before you see three doubles in a row.My recommendation in terms of adding complexity:• Add code so landing on “Go to jail” sends the player to jail.• Add code that draws from the Chance and Community Chest decks and moves the player accordingly. Keep inmind that some cards have no effect on player movement, while other cards do.• Add code to allow players to move again after doubles.• Add code to implement the rules for Jail. You’ll need to keep track of whether the player is actually in jail ornot, how many turns the player has been in jail, and the rules for getting out.Grading1. Do NOT print the verbose version for all of 1000 games.2. We will not run your code. The simulation will take time to run, and we do not have the luxury of running theentire simulation for all students.3. We will check the output of the 20 preset turns.These are the point values of each turn. I also specify the rule implementation that we are looking for in each of theseturns.• Turn 4 (8 pts) Roll three sets of doubles, third doubles sends player to jail, also drawing community chest• Turn 6 (4 pts) Rolling doubles exits jail• Turn 8 (4 pts) Go to jail space sends player to jail• Turn 11 (4 pts) Third turn. No doubles roll. Player exits jail.• Turn 14 (4 pts) Chance card advances to nearest railroad. Take a ride on Reading Railroad.• Turn 15 (4 pts) Chance card that doesn’t move and rolling doubles.• Turn 16 (4 pts) Chance card that sends player to jail.• Turn 19 (4 pts) Rolled doubles on third turn in jail. Gets out of jail.• The other 12 turns are worth 2 points each.That is 60 points.4. We will check the final output of counts in the results tables.Things we are looking for in the results tables (5 points each):• Jail should be the most frequent space landed on.• Jail should have a frequency between 10 and 13%.• Spots 2 and 3 should be Illinois Ave and Go (possibly switched)• New York Ave. and Tennessee Ave. should be in the top 10.• Reading Railroad and B&O Railroad should be in the top 10.• Mediterranean Ave and Baltic Ave should be in the bottom 5.• Park Place should be very infrequent. Bottom 10.• Go to jail should be landed on 0 times.5. If your 20 turn output and table output matches what we are looking for, you will get full credit.46. If your outputs do not match, We will skim your code to see if certain functions or chunks of code exist to see ifyou can recover some (up to half) of the points you lost.We will check for the following sections. Because your code will be quite long, it is VERY IMPORTANT youCLEARLY mark these sections for the grader if you want to recover points.a. drawing chance cardb. drawing community chest cardc. landing on “go to jail”d. roll again for rolling doublese. going to jail for rolling three doublesf. jail functionalityYou can ‘hard code’ the functions that handle the decks. In other words, you can write something along the lines of## for chance deck...if(carddrawn == 1)code changes player position to space 1 # advance to goif(carddrawn == 2)code changes player position to space 25 # advance to Illinois avenue# etc....Good luck!I know this is a tough assignment. Like everything else in life, sometimes you have to prioritize other things (eg.health, sleep, sanity, etc.) over the task at hand.If you are unable to implement all parts of the solution, that is also okay. I cannot give you full credit, but pleaseindicate what you were able to implement and what you were not able to implement. You will be graded on what youwere able to complete.You are encouraged to talk with other students currently enrolled in Stats 102A.Best wishes!5转自:http://www.6daixie.com/contents/18/4921.html

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,686评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,668评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,160评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,736评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,847评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,043评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,129评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,872评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,318评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,645评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,777评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,470评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,126评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,861评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,095评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,589评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,687评论 2 351

推荐阅读更多精彩内容