• <button id="ecio8"></button>
  • <li id="ecio8"></li>
    <s id="ecio8"></s>
    <dl id="ecio8"></dl>
    <center id="ecio8"><noscript id="ecio8"></noscript></center>
    • <table id="ecio8"><source id="ecio8"></source></table>
      <bdo id="ecio8"></bdo>
    • <s id="ecio8"></s>

      代做MATH1033、代寫c/c++,Java程序語言

      時間:2024-05-11  來源:  作者: 我要糾錯



      The University of Nottingham
      SCHOOL OF MATHEMATICAL SCIENCES
      SPRING SEMESTER 2023-2024
      MATH1033 - STATISTICS
      Your neat, clearly-legible solutions should be submitted electronically via the MATH1033 Moodle page by
      18:00 on Wednesday 8th May 2024. Since this work is assessed, your submission must be entirely your
      own work (see the University’s policy on Academic Misconduct). Submissions made more than one week
      after the deadline date will receive a mark of zero. Please try to make your submission by the deadline.
      General points about the coursework
      1. Please use R Markdown to produce your report.
      2. An R Markdown template file to get you started is available to download from Moodle. Do make use of
      this, besides reading carefully the Hints and Tips section below.
      3. Please submit your report a self-contained html file (i.e. as produced by R Markdown) or pdf.
      4. If you have any queries about the coursework, please ask me by email (of course, please limit this to
      requests for clarification; don’t ask for any of the solution nor post any of your own).
      Your task
      The data file scottishData.csv contains a sample of the ”Indicator” data that were used to compute the 2020
      Scottish Index of Multiple Deprivation (SIMD), a tool used by government bodies to support policy-making. If
      you are interested, you can see the SIMD and find out more about it here: https://simd.scot
      Once you have downloaded the csv file, and once you’ve set the RStudio working directory to wherever you
      put the file, you can load the data with dat <- read.csv(”scottishData.csv”) The file contains data for a sample
      of 400 ”data zones” within Scotland. Data zones are small geographical areas in Scotland, of which there
      are 6,976 in total, with each typically containing a population of between 500 and 1000 people. Of the 400
      observations within the data file, 100 are from the Glasgow City, 100 are from City of Edinburgh, and 200
      are from elsewhere in Scotland. Glasgow and Edinburgh are the two largest cities in Scotland by population.
      Table 1 shows a description of the different variables within the data set.
      Your report should have the following section headings: Summary, Introduction, Methods, Results, Conclusions.
      For detailed guidance, read carefully section page 4 of the notes, and the ”How will the report be marked?”
      section below.
      The Results section of your report should include subsections per points 1-3 as follows. The bullet points
      indicate what should be included within these subsections, along with suitable brief commentary.
      MATH1033 Turn Over
      2 MATH1010
      1. A comparison of employment rate between Glasgow and Edinburgh.
      • A single plot with side-by-side boxplots for the Employment_rate variable for each of
      Glasgow and Edinburgh.
      • A histogram of the Employment_rate variable with accompanying normal QQ plot, for
      each of Glasgow and Edinburgh.
      • Sample means and variances of the Employment_rate variable for the data zones in
      each of Glasgow and Edinburgh.
      • Test of whether there is a difference in variability of Employment_rate scores between
      Glasgow and Edinburgh.
      • Test of whether there is a difference in means of Employment_rate scores between
      Glasgow and Edinburgh.
      2. Investigation into how Employment_rate and other variables are associated.
      • A matrix of pairwise scatterplots for the following variables: Employment_rate,
      Attainment, Attendance, ALCOHOL, and Broadband. Also present pairwise correlation
      coefficients between these variables.
      • A regression of Employment_rate on Attendance, including a scatterplot showing a line
      of best fit.
      3. A further investigation into a respect of your choosing.
      • It’s up to you what you choose here. Possible things you could consider are: considering
      an analysis similar to 1 above, but involving the data on data zones outside of Glasgow
      and Edinburgh; considering whether what you find in investigations in 2 above are
      similar if you consider whether the data zones are from Glasgow, Edinburgh or elsewhere;
      investigating the other variables in the data set besides these in 1 and 2.
      • Note that some variables will be very strongly correlated, but with fairly obvious/boring
      explanation: for example “rate” variables (see Table 1) are just “count” variables
      divided by population size, and data zones are designed to have similar population
      sizes.
      • Think freely and creatively about what is interesting to investigate, especially how you
      could make good use of the methods that you are learning in the module.
      Please include as an appendix the R code to produce the results in your report, but don’t include
      R code or unformatted text/numerical output in the main part of the report itself.
      Hints and tips:
      1. Use the template .Rmd file provided on Moodle as your starting point.
      2. Read carefully “How will the report be marked?” below. Then re-read it again once again
      just before you submit to make sure you have everything in place.
      3. You may find the subset command useful. Some examples:
      • glasgow <- subset(dat, Council_area == "Glasgow City") defines a new variable containing
      data only for Glasgow.
      • subset(dat, (Council_area != "City of Edinburgh" & Council_area != "Glasgow City"))
      finds the data zones that are not in either Edinburgh or Glasgow.
      4. The command names(dat) will tell you the names of the variables (columns) in dat.
      5. dat(,c(16,17,18)) will pick out just the 16th, 17th, 18th column (for example).
      MATH1010
      [ ]
      m
      ( ]
      ⑧m
      3 MATH1010
      6. The pairs() function produces a matrix of pairwise scatterplots. cor() computes pairwise
      correlation coefficients.
      7. Do make sure that figures have clear titles, axis labels, etc
      MATH1010 Turn Over
      .
      4 MATH1010
      How will the report be marked?
      The marking criteria and approximate mark allocation are as follows:
      Summary [4 marks] - have you explained (in non-technical language) (a) the aim of the analysis;
      (b) (very briefly) the methods you have used; and (c) the key findings?
      Introduction [5] - have you (a) explained the context, talked in a bit more detail about the aim;
      (b) given some relevant background information; (c) described the available data; (d) explained
      why the study is useful/important?
      Methods [3] - have you described the statistical techniques you have used (in at least enough
      detail that a fellow statistician can understand what you have done)?
      Results [14, of which 7 are for the investigation of your choosing mentioned in point 3 above] -
      have you presented suitable graphical/numerical summaries, tests and results, and interspersed
      these with text giving explanation?
      Conclusions [4] - have you (a) recapped your key findings, (b) discussed any limitations, and
      (c) suggested possible further extensions of the work?
      Presentation [10] - overall, does the report flow nicely, is the writing clear, and is the presentation
      tidy (figures/tables well labelled and captioned)? Has Markdown been used well?
      MATH1010
      5 MATH1010
      Table 1: A description of the different variables. “Standardised ratio” is such that a value of 100
      is the Scotland average for a population with the same age and sex profile.
      MATH1010 End

      請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp



















       

      標簽:

      掃一掃在手機打開當前頁
    • 上一篇:COMP2017代寫、代做Python/Java程序
    • 下一篇:CMT219代寫、代做Java程序語言
    • 代做CSCI 2525、c/c++,Java程序語言代寫
    • COMP 315代寫、Java程序語言代做
    • 昆明生活資訊

      昆明圖文信息
      蝴蝶泉(4A)-大理旅游
      蝴蝶泉(4A)-大理旅游
      油炸竹蟲
      油炸竹蟲
      酸筍煮魚(雞)
      酸筍煮魚(雞)
      竹筒飯
      竹筒飯
      香茅草烤魚
      香茅草烤魚
      檸檬烤魚
      檸檬烤魚
      昆明西山國家級風景名勝區
      昆明西山國家級風景名勝區
      昆明旅游索道攻略
      昆明旅游索道攻略
    • 福建中專招生網 NBA直播 短信驗證碼平臺 幣安官網下載 WPS下載

      關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

      Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
      ICP備06013414號-3 公安備 42010502001045

      欧美成人免费全部观看天天性色,欧美日韩视频一区三区二区,欧洲美女与动性zozozo,久久久国产99久久国产一
    • <button id="ecio8"></button>
    • <li id="ecio8"></li>
      <s id="ecio8"></s>
      <dl id="ecio8"></dl>
      <center id="ecio8"><noscript id="ecio8"></noscript></center>
      • <table id="ecio8"><source id="ecio8"></source></table>
        <bdo id="ecio8"></bdo>
      • <s id="ecio8"></s>
        主站蜘蛛池模板: 欧美精品一区二区三区在线| 成年大片免费视频| 10天的爱人下载| 亚洲性色成人av天堂| 国产精品福利影院| 欧美同性videos视频| 亚洲五月激情网| 久草福利在线观看| 国产亚洲欧美日韩综合综合二区| 日本阿v精品视频在线观看| 蜜桃成熟时33d在线| 中国speakingathome宾馆学生| 免费看的黄色大片| 国产视频第二页| 日韩精品一区二区三区中文 | 国产免费无码一区二区视频| 日本www.色| 精品国产黑色丝袜高跟鞋| 中国性猛交xxxxx免费看| 免费无码成人AV片在线在线播放| 好吊妞欧美视频免费| 波多野结衣系列cesd819| 香蕉视频在线观看黄| 久久久精品波多野结衣| 午夜激情电影在线观看| 在线观看麻豆精品国产不卡| 欧美伊人久久大香线蕉综合| 好吊色青青青国产在线播放| 中文字幕国产综合| 亚洲色av性色在线观无码| 国产精品igao视频网| 护士与税务干部完整2av| 浮力影院第一页小视频国产在线观看免费 | 黄色网址免费观看视频| 一个人看的www在线高清小说| 亚洲综合小视频| 国产六月婷婷爱在线观看| 最近高清中文在线字幕在线观看| 蜜桃97爱成人| 国产精品亚洲四区在线观看| 91精品久久久久久久久久|