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

        代寫COMP 315、代做Java編程設計
        代寫COMP 315、代做Java編程設計

        時間:2025-03-18  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



        Assignment 1: Javascript
        COMP 315: Cloud Computing for E-Commerce
        February 2025
        1 Introduction
        A common task when backend programming is data cleaning, which is the process of taking an initial data set
        that may contain erroneous or incomplete data, and removing or fixing those elements. In this assignment, you
        will be tested on your knowledge of JavaScript by implementing a set of functions that perform data cleaning
        operations on a dataset.
        2 Objectives
        By the end of this assignment, you will:
        • Gain proficiency in using JavaScript for data manipulation.
        • Be able to implement various data cleaning procedures, and understand the significance of them.
        • Have developed problem-solving skills through practical application.
        3 Initial setup
        On the canvas page for this assignment, there is a template file called Data P rocessing.js. Upload this template
        file to Codegrade. Note that the function signatures and module export statements have been prepared for you.
        Codegrade hosts a series of unit tests that will auto mark your code, and will present you with your final mark.
        This allows for immediate feedback and removes any potential bias in marking. You have an unlimited number
        of submissions to Codegrade. For this assignment you cannot import any additional libraries, as only the File
        System (FS) library is allowed. The data you will be cleaning can be seen in Table 1.
        Data name Note
        id This is a unique integer identifier for each item.
        name Each product has a name, which for this data set will just be the type of product followed
        by a unique identifier integer.
        price This is a real value representing the cost of the product.
        category Each product has a general category such as Clothing or Electronics, and is saved as a
        string.
        type Each product’s type is a string that represents what sort of item it is.
        quantity This is an integer value that shows how many of this item is currently in stock.
        rating This is a real value that is a multiple of 0.5, starting from 0 and being capped at 5. This
        value represents the number of stars users rate the item.
        image link This is the link to the product in the database, and is saved in the format of “[cate gory]/[type]/[name].jpg”. Name is all in lowercase with the spaces replaced with under scores.
        Table 1: The attributes that are stored for each product
        1
        Data name Note
        category Each product has a general category such as Clothing or Electronics, and is saved as a
        string.
        type Each product’s type is a string that represents what sort of item it is.
        min price This number represents the minimum price for this type of product.
        max price This number represents the maximum price for this type of product.
        Table 2: The attributes that are stored for pricing each type of product
        4 Data cleaning
        Add the following functionality to each of the functions. Do not modify the function signature or return
        statement. The f ile name variable is the string that corresponds to a JSON file name without the ‘.json’
        extension. For example if the file is called test.json then f ile name would have test stored. The entries
        variable is an array of JSON objects corresponding to products. Each JSON object has the attributes listed in
        Table 1. The products prices variable is an array of JSON objects corresponding to the minimum and maximum
        price for each type of product. Each JSON object has the attributes listed in Table 2.
        4.1 load JSON
        This function should take the f ile name variable and load the corresponding JSON file. Note that the ‘.json’
        file extension should be added. If the file cannot be found then an exception should be thrown that says
        ”‘[file name].json’ cannot be found”, where [file name] is replaced with the actual file name. The input text
        should be converted to an array of JSON objects. If this process cannot be done, then it should throw the error
        ”‘[file name].json’ is not a valid JSON file” where again [file name] is replaced with the actual file name.
        4.2 clean name
        This function should iterate through each of the products, and replace null name values with the correct name.
        If the name value is ‘null’ then the image link variable should be checked. If image link is not ‘null’ then
        the name should be extracted from that. It should replace the underscores with spaces, and each word should
        be capitalised. If image link is ‘null’ then the name should be taken from the ‘type’ variable. Each name is
        unique, and is the type value with a unique integer identifier appended to it. This identifier corresponds to the
        number of that type of product that have occurred up to that point. For example if the product type is ”Belt”,
        and it is the third ”Belt” in the product list then it’s name should be ”Belt 3”.
        4.3 clean price
        This function takes in the entries variable, as well as the product prices variable. The price values should
        always be non-negative number, and should first be changed to positive. The corresponding min price and
        max price for this type of product should be found from product prices. If the price for the product is less
        than the min price value for that type of product, then it should be set as the min price value. For example
        if the price of Shoe4 is 1, and the min price value for Shoe is 3, then the price for Shoe4 should be set to 3. If
        the price for the product is more than the max price value for that type of product, then it should be set as
        the max price value.
        4.4 clean category
        This function should check if the category is ‘null’, then it should use the type value to fill in the missing data.
        It should find other entries with the same type value, and then use this to fill in the corresponding category
        value.
        4.5 clean type
        This function should check if the type is ‘null’, then it should check the name value. If the name is not ‘null’
        then it should remove the unique number and use that value. If the name is ‘null’ then it should derive the
        name from the image link.
        2
        4.6 clean quantity
        The quantity of a product must be a non-negative value, so if the value is negative then it should be set to
        positive. If the value is not an integer, then it should be rounded to the nearest integer using standard ‘rounding
        half up’ rounding.
        4.7 clean rating
        If the rating for a product is set to ‘null’, then it should be set to 0. The rating of a product is given as a star
        value between 0 and 5 stars. It is possible to give a product half a star, therefore the possible values are: 0, 0.5,
        1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5. If a value does not correspond to one of these, then it should be rounded to the
        nearest possible value.
        4.8 clean image link
        This function populates ‘null’ image link values using the other variables for the JSON object. This should be
        in the format of “[category]/[type]/[name].jpg”. The category and type values are used as they are, however
        the name value should all be in lowercase with spaces replaced with underscores. The ‘.jpg’ text should be
        appended to the end.
        5 Marking
        The marking will be carried out automatically using the CodeGrade marking platform. A series of unit tests
        will be ran, and the mark will correspond with how many of those unit tests were successfully executed. Your
        work will be submitted to an automatic plagiarism/collusion detection system, and those exceeding a threshold

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

        掃一掃在手機打開當前頁
      1. 上一篇:代做PROG2005、代寫C/C++,Python程序
      2. 下一篇:代寫COP3503、代做Java程序設計
      3. 無相關信息
        合肥生活資訊

        合肥圖文信息
        出評 開團工具
        出評 開團工具
        挖掘機濾芯提升發動機性能
        挖掘機濾芯提升發動機性能
        戴納斯帝壁掛爐全國售后服務電話24小時官網400(全國服務熱線)
        戴納斯帝壁掛爐全國售后服務電話24小時官網
        菲斯曼壁掛爐全國統一400售后維修服務電話24小時服務熱線
        菲斯曼壁掛爐全國統一400售后維修服務電話2
        美的熱水器售后服務技術咨詢電話全國24小時客服熱線
        美的熱水器售后服務技術咨詢電話全國24小時
        海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
        海信羅馬假日洗衣機亮相AWE 復古美學與現代
        合肥機場巴士4號線
        合肥機場巴士4號線
        合肥機場巴士3號線
        合肥機場巴士3號線
      4. 短信驗證碼 酒店vi設計

        拍国产乱人伦偷精品视频| 久久久精品2019中文字幕之3| 思思91精品国产综合在线| 国产精品国产精品偷麻豆| 亚洲午夜精品一区二区公牛电影院| 亚洲αv在线精品糸列| 国产亚洲精品久久久久秋霞| 国产精品国产三级在线专区 | 日韩精品一二三四区| 亚洲AV成人精品日韩一区18p| 国产精品青草久久| 超碰97久久国产精品牛牛| 2021最新国产精品网站| 亚洲av日韩av欧v在线天堂| 最新国语自产精品视频在| 亚洲日韩精品无码AV海量| 精品国产一二三区在线影院| 久久精品国产99久久| 人妻少妇精品一区二区三区| 精品人妻伦一二三区久久| 国产精品无码免费专区午夜| 国产国拍亚洲精品福利| 亚州日韩精品专区久久久| 日韩午夜伦y4480私人影院| 久久青青草原精品国产不卡| 国产毛片片精品天天看视频| 69国产成人精品午夜福中文| 日韩精品真人荷官无码| 久9re热这里精品首页| 亚洲国产精品无码久久SM| 日韩精品在线一区二区| 免费精品99久久国产综合精品 | 国产精品成人一区二区三区| 亚洲AV综合永久无码精品天堂 | 国产高清精品在线| 一区二区不卡久久精品| www好男人精品视频在线观看| 日韩精品人妻av一区二区三区| 91麻豆精品激情在线观看最新| 99爱在线精品视频网站| 亚洲国语精品自产拍在线观看|