合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

        代寫ECS 116、代做SQL設計編程

        時間:2024-04-30  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



        ECS 116 Databases for Non-Majors / Data Management for Data Science
        Programming Assignment 1
        A. Prelude
        1. The assignment is of 25 points.
        2. Last date of submission is April 28, Sunday @ 11:59 pm.
        3. Late submissions will be graded according to the late policy. Specifically, 10% of grade is deducted if you are
        up to 24 hours late, 20% is deducted if you are 24 to 48 hours late, and no credit if turned in after 48 hours.
        4. This assignment will be solo.
        5. Create a new sql file for each step namely (Step 2, Step 3, Step 4) if you have to use sql commands through
        DBeaver.
        6. Your assignment will be graded based on correctness (passing all tests), ingenuity and originality.
        7. All the required files (csv) can be found under Files in Canvas.
        8. Plagiarism is strictly prohibited. You’re free to discuss high-level concepts amongst your peers. However,
        cheating will result in no points on the assignment and reporting to OSSJA.
        B. Step 1: Uploading africa fs after cleaning db.csv into PostgreSQL
        1. In DBeaver create a new database faostat. Set that as the default database
        2. Create a schema food sec (or “food sec v01”) in your database faostat. Set that as default schema.
        3. Do set search path to food sec;
        4. Load the file africa fs after cleaning db.csv into the schema food sec to make table africa fs ac.
        5. Modify the data types of some of the columns of africa fs ac as follows:
         area code m49: varchar(3)
         element code: varchar(4)
         year code: varchar(8)
         value: numeric
         After making these changes, click on “Save” at bottom of pane.
        6. Check whether the values for value column have been imported correctly.
         Do a selection query to get distinct values that are ≤ 2.
         Using Excel see what are the values ≤ 2.
         Do these match?
        7. Do an SQL query to DELETE all tuples from africa fs ac (it will ask you to confirm that you want to do this
        delete).
        8. Use DBeaver to import the file africa fs after cleaning db.csv (don’t use the SQL “COPY” command
        because it complains about a data type encoding issue).
         Do a sanity check that the number of tuples in your table is same as in csv file.
         Again check on the values in column value.
        1
        C. Step 2: Build Table gdp stunting overweight anemia
        1. Similar to the construction of gdp stunting overweight shown in the 2024-04-09 lecture and the SQL script
        faostat-part 02-transforming africa fs.sql, use DBeaver and SQL commands to build a table
        gdp stunting overweight anemia which has, for each country-year pair the following associated values for:
         GDP per capita Purchasing Power Parity (22013): use column name gdp p ppp.
         Percentage of children over 5 years of age who are stunted (21025): . childhood stunting
         Percentage of children over 5 years of age who are overweight (21043): childhood overweight.
         Prevalence of anemia among women of reproductive age: anemia
        2. Add this table into your schema food sec.
        Figure 1: Almost correct example of the table gdp stunting overweight anemia. Your table should have 3 characters
        for area code m49 column, and may have some decimal values for the last 4 columns.
        D. Step 3: Build table energy undernourished
        1. Note that many records in africa fs ac have year and year code values based on 3-year intervals rather than
        single years. We will use some of this data to gain more insight about countries. In particular, we will interpret
        a 3-year interval as applying to the year in the middle, e.g., we will interpret 2000-2002 as applying to the year
        2001.
        2. First, build a table energy undernourished which has, for each country-year code pair the associated values
        for:
         Average dietary energy supply adequacy (21010): use column name dietary energy.
         Prevalence of undernourishment (210041): use column name undernourished.
         Note: this table should have 1040 rows in it.
        3. Now add a column derived year to the table energy undernourished, where for each tuple, the derived year
        value is computed by using the year in the middle of the first and third years in the year code of the tuple.
        4. The column you added probably has data type integer. Convert this to varchar(4).
        2
        Figure 2: Almost correct example of the table energy undernourished. As with Figure 1, the area code m49 column
        should have 3 characters, and the values for last 3 columns may have decimal values.
        E. Step 4: Joining the gdp stunting overweight anemia and
        energy undernourished tables to create new
        table gdp energy with fs indicators
        1. Create a selection query that combines the table gdp stunting overweight anemia and energy undernourished
        to form a new table gdp energy with fs indicators
         The columns should include area code m49, area, year code, gdp pc ppp, dietary energy, childhood stunting,
        childhood overweight, anemia and undernourished.
         Tuples in this table should be formed by combining tuples from gdp stunting overweight anemia and
        energy undernourished where year code from the first table equals derived year of the second table.
         Note: your table should have 895 tuples in it.
        2. Export the table gdp energy with fs indicators as a csv file gdp energy with fs indicators.csv.
        3. Sort this csv file by area (country name) and then year code.
        4. CONGRATULATIONS: you have created a table that we can use later to determine whether there are sta?tistical correlations between gdp per capita and/or stunting, childhood overweight, anemia in women and/or
        undernourishment.
        Figure 3: Example of the table gdp energy with fs indicators
        5. Create a new table gdp energy fs aggs.
         Which has columns as:
        – area code m49
        – area
        – avg gdp pc ppp
        – avg dietary energy
        3
        – avg childhood stunting
        – avg childhood overweight
        – avg anemia
        – avg undernourished
         The “avg” columns should hold the averages of the corresponding items for each country, over all of the
        years of available data.
         Use the round operator on the “avg” value, so that they have type numeric and are rounded to 2 decimal
        points. Use the following kind of expression: round(< expression for average >::numeric, 2).
        6. Export the table gdp energy fs aggs as a csv file gdp energy fs aggs.csv.
        7. Sort the csv file by area (i.e., country name).
        Figure 4: Almost correct example of the table gdp energy fs aggs. You will obtain slightly different values. This
        table was computed with rounded values for various columns, rather than with values having decimals.
        F. Submission
        1. Please make a single zip file that includes
         gdp energy with fs indicators.csv
         gdp energy fs aggs.csv
         The DBeaver sql scripts that you used to create these 2 csv files, specifically, Step 2.sql, Step 3.sql,
        Step 4.sql).
         Name the zip file as FirstName LastName LastFourDigitsOfStudentID ECS116 A1.
        2. Upload it on Canvas for Assignment 1 (This is a solo assignment so don’t add your peers to your submission).

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














         

        掃一掃在手機打開當前頁
      1. 上一篇:CS 6347代做、MATLAB程序設計代寫
      2. 下一篇:菲律賓達沃景點(達沃著名景點介紹)
      3. 無相關信息
        合肥生活資訊

        合肥圖文信息
        急尋熱仿真分析?代做熱仿真服務+熱設計優化
        急尋熱仿真分析?代做熱仿真服務+熱設計優化
        出評 開團工具
        出評 開團工具
        挖掘機濾芯提升發動機性能
        挖掘機濾芯提升發動機性能
        海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
        海信羅馬假日洗衣機亮相AWE 復古美學與現代
        合肥機場巴士4號線
        合肥機場巴士4號線
        合肥機場巴士3號線
        合肥機場巴士3號線
        合肥機場巴士2號線
        合肥機場巴士2號線
        合肥機場巴士1號線
        合肥機場巴士1號線
      4. 短信驗證碼 酒店vi設計 NBA直播 幣安下載

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

        Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
        ICP備06013414號-3 公安備 42010502001045

        99国产精品视频久久久久| 久久国产精品范冰啊| 99精品在线观看视频| 久久青青草原精品国产软件| www.999精品视频观看免费| 久久成人国产精品一区二区| 亚洲爆乳精品无码一区二区| 中文字幕精品一区二区精品| 国产精品一区二区无线| 一区二区三区四区精品视频| 午夜精品一区二区三区在线视| 一区国产传媒国产精品| 国产成人精品综合久久久久| 亚洲日韩精品射精日| 91久久精品午夜一区二区| 国产精品无码v在线观看| 网曝门精品国产事件在线观看| 久久亚洲精品AB无码播放| 青青热久久国产久精品| 国产精品久久久久乳精品爆 | 精品国产一区二区三区在线观看| 日韩大片观看网址| 亚洲国产精品无码久久| 日韩精品免费一级视频| 国产亚洲精品一品区99热| 日韩精品高清自在线| 精品无码久久久久久国产| 久草视频这里只有精品| 国产成人亚洲精品影院| 国产精品毛多多水多| 精品9E精品视频在线观看| 久久福利青草精品资源站| 无码精品久久一区二区三区| 日韩精品无码区免费专区| 欧美日韩精品乱国产| 精品视频一区二区观看| 亚洲国产综合精品一区在线播放| 国产精品色午夜视频免费看| 狠狠久久精品中文字幕无码| 久久99久国产麻精品66| 精品人妻系列无码一区二区三区|