合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

        MS3251代寫、代做Python/Java程序
        MS3251代寫、代做Python/Java程序

        時(shí)間:2024-11-29  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



        MS**51 Analytics Using SAS 
        Assignment 2 
         
        • You must complete the assignment by yourself. Exchanging ideas with classmates is 
        encouraged, but you must not cross the line between discussion and collaboration. 
        Showing your work to your classmates is a non-acceptable collaboration. All identified 
        collaboration work will have a 0 mark. 
        • Complete all questions. Put all of your SAS code into one PDF file. You must mark each 
        question’s answer as SAS comment statements in the code, such as /*Task 1*/. Name 
        your code file as nnnnnnnn.pdf, where nnnnnnnn is your full name. 
        • You should set all irrelevant statements in your code as SAS comment statements. Be 
        aware that your SAS code created under a non-English operating system may contain 
        extraneous characters when viewed in an English operating system. You are responsible 
        for ensuring your submitted code is free of these characters. All extraneous characters in 
        your submitted code will be considered errors. 
        • Utilising codes not included in the course notes will not be accepted as correct answers, 
        even though they are not wrong. 
        • When running in SAS OnDemand Studio, your submitted SAS code should be error-free. 
        • You must submit your code file via the link Assignment 2 under the Assignments section 
        of the course on Canvas. If you submit your file more than once, only the latest submitted 
        file will be marked. The assignment is due at 06:00 AM on 4 December 2024. Two marks 
        shall be deducted for every 1 minute or less late. The submission link will be closed at 
        06:30 AM on 4 December 2024. Submission by other methods will not be accepted. 
         
        Tasks 
        Download Assignment2.zip from the Assignments folder under the Files section. Expand the 
        zipped file for the following: 
        • Profile_2016.sas7bdat 
        • Flying_2016.sas7bdat 
        • Redemption_2016.sas7bdat 
        • Variables_Disctionary.xlsx 
         
        The variable descriptions can be found in Variables_Dictionary.xlsx. Do not change the 
        contents of these data sets unless you are told to do so explicitly. 
         
        You are asked to write an SAS program for the tasks below. Unless stated explicitly, you can 
        deploy multiple DATA steps and SAS procedures for each task. 
         
        Task 1: 
        Define a SAS library named xxxxxxxx for the folder containing the three SAS data sets in your 
        SAS Studio account, where xxxxxxxx is your given name (or first name). Use only the first eight 
        letters if your given name is longer than eight characters. For example, if your name is CHEN 
        Da Wen, the library name should be ‘dawen’. 
         
        Task 2: 
        Write a SAS program for the following activities: • Create a new data set named Profile that includes all columns and rows from 
        Profile_2016. Store Profile in the SAS Work library. 
        • Add a new column named Tenure to Profile. Calculate a member’s tenure as full years 
        from their join date to 1 January 2017. For example, if a member’s join date is 1 August 
        1996, their tenure on 1 January 2017 would be 20. 
        • Print a report showing the range (maximum minus minimum) of Tenure values in the 
        Profile. There is no need to include the report in your submitted code. 
         
        Task 3: 
        Write a SAS program for the following activities: 
        • Sort the observations in Profile by Member_ID. 
        • Sort the observations in Redemption_2016 by Member_ID and store the sorted data set 
        in a temporary SAS data set. 
        • Sort the observations in Flying_2016 by Member_ID and store the sorted data set in a 
        temporary SAS data set. 
         
        Task 4: 
        Write one SAS DATA step to reshape the sorted Flying_2016 data set by collapsing 
        observations with the same Member_Id into a single observation. Name this new SAS data 
        set Flying and store it in the SAS Work library. For each observation in Flying, create if needed 
        and keep only the following variables (the order of the variables is not specified) in the data 
        set: 
         
         Variable Name Description 
        Member_Id Member’s identity. 
        Air_CityU Number of times the member had flown with CityU Airlines (i.e. 
        Airline value = ‘CityU’) in 2016. Equal 0 if none. 
        Air_NonCityU Number of times the member had flown with non-CityU Airlines 
        (i.e. Airline value ^= ‘CityU’) in 2016. Equal 0 if none. 
        FlyBonus_Earned Total bonus points earned by the member from flying in 2016. 
         
        Task 5: 
        Write one SAS DATA step for all of the following activities: 
        • Merge the sorted Profile and Flying data sets by Member_ID. Name the merged data 
        set Profile1 and store it in the SAS Work library. 
        • Keep all columns from both data sets in Profile1. 
        • For members who did not fly in 2016, set Air_CityU and Air_NonCityU to 0. 
        • For members who did not earn bonus points from flying in 2016, set FlyBonus_Earned to 
        0. 
         
        Task 6: 
        Write one SAS DATA step for all of the following activities: 
        • Merge the sorted Redemption_2016 and Profile1 by Member_ID. Name the merged data 
        set Profile2. 
        • Sum the redemption points for each member in 2016. If a member had no redemption in 
        2016, set the sum to 0. Store these sums in a new column named Redeemed in Profile2. • Replace each member’s bonus point balance in Profile2 with a new balance value, 
        calculated as bonus point balance at the end of 2015 + bonus points earned from flying in 
        2016 – bonus points redeemed in 2016. {P.S. Some bonus point balances in the data set 
        may be negative. Keep them in the data set. No adjustment is required.} 
        • Each Member_ID appears only once in Profile2. 
        • Drop the variables Date and Redeemed_point from the sorted Redemption_2016 in 
        Profile2. 
         
        Task 7: 
        Write a SAS program to report the following statistics and information without requiring 
        further manual calculations: 
        a) The number of male members who flew only with CityU Airlines in 2016. 
        b) The number of members who had no bonus point redemptions in 2016. 
        c) The top 1000 bonus points earners in 2016. 
        There is no need to include the reports in your submitted code. 
         
        Task 8: 
        Write a SAS program to generate a report on the number of members in Profile2 for each of 
        the following bonus point balance groups: 
        a) 100,000 or lower 
        b) 100,001 – 300,000 
        c) 300,001 – 500,000 
        d) 500,001 or higher 
         
        You are not allowed to use the DATA step for this task. The report should look exactly like 
        this: 
         
        There is no need to include the reports in your submitted code. 
         
        {Hint: First, create a user-defined format for the bonus point balance groups. Next, use an 
        appropriate report procedure to write the results, including the formatted bonus point 
        balance values, to a SAS dataset. Finally, print that SAS dataset with the required title, labels, 
        and formats.} 
        -END- 
         
        請(qǐng)加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp




         

        掃一掃在手機(jī)打開當(dāng)前頁
      1. 上一篇:代做CSC3050、代寫C/C++程序語言
      2. 下一篇:代做6CCS3AIN、Python語言編程代寫
      3. 無相關(guān)信息
        合肥生活資訊

        合肥圖文信息
        急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
        急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
        出評(píng) 開團(tuán)工具
        出評(píng) 開團(tuán)工具
        挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
        挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
        海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
        海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
        合肥機(jī)場(chǎng)巴士4號(hào)線
        合肥機(jī)場(chǎng)巴士4號(hào)線
        合肥機(jī)場(chǎng)巴士3號(hào)線
        合肥機(jī)場(chǎng)巴士3號(hào)線
        合肥機(jī)場(chǎng)巴士2號(hào)線
        合肥機(jī)場(chǎng)巴士2號(hào)線
        合肥機(jī)場(chǎng)巴士1號(hào)線
        合肥機(jī)場(chǎng)巴士1號(hào)線
      4. 短信驗(yàn)證碼 酒店vi設(shè)計(jì) deepseek 幣安下載 AI生圖 AI寫作 aippt AI生成PPT 阿里商辦

        關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

        Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
        ICP備06013414號(hào)-3 公安備 42010502001045

        主站蜘蛛池模板: 久久99精品免费一区二区| 精品国产一区二区三区在线观看| 一区五十路在线中出| 精品国产一区二区三区2021| 国产日韩一区二区三区在线观看| 亚洲A∨无码一区二区三区| 糖心vlog精品一区二区三区| 日韩精品一区二区三区中文版| 国产一区二区精品尤物| 国产主播在线一区| 国产精品主播一区二区| 亚洲一区动漫卡通在线播放| 日韩三级一区二区| 久久99精品波多结衣一区| 丰满爆乳无码一区二区三区| 中文字幕精品无码一区二区| 中文字幕人妻AV一区二区| 精品免费久久久久国产一区| 国产香蕉一区二区精品视频| 日本丰满少妇一区二区三区| 久久无码人妻一区二区三区午夜| 国产一区内射最近更新| 久久久一区二区三区| 日韩A无码AV一区二区三区| 中文字幕日韩一区| 国产高清在线精品一区二区| 精品动漫一区二区无遮挡| 精品日本一区二区三区在线观看| 国产精品电影一区| 亚洲A∨无码一区二区三区| 波多野结衣中文一区| 精品国产一区二区三区久久久狼| 亚洲国产激情一区二区三区| 亚洲一区二区三区丝袜| 日韩一区二区久久久久久| 无码精品人妻一区二区三区影院| 国产精品亚洲午夜一区二区三区| 色妞AV永久一区二区国产AV| 国产一区二区三区小向美奈子| 色噜噜狠狠一区二区三区| 久久福利一区二区|