国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

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

代寫 COMP 315、代做 java 程序設計
代寫 COMP 315、代做 java 程序設計

時間:2025-03-09  來源:合肥網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 calledData Processing.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 file 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 file 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 file 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 will be reported to the Academic Integrity Officer for investigation regarding adhesion to the university’s policy https://www.liverpool.ac.uk/media/livacuk/tqsd/code-of-practice-on-assessment/appendix L cop assess.pdf. 6 Deadline The deadline is 23:59 GMT Thursday the 20th of March 2025. Late submissions will have the typical 5% penalty applied for each day late, up to 5 days. Submissions after this time will not be marke

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



 

掃一掃在手機打開當前頁
  • 上一篇:代寫SE360、Java/Python程序代做
  • 下一篇:代做 program、代寫 matlab 程序語言
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    日韩视频免费在线观看| 久久99导航| 久久久成人精品一区二区三区| 久久成人一区二区| 加勒比在线一区二区三区观看| 国产成人亚洲综合无码| 亚洲国产一区二区精品视频| 国产日本欧美在线| 国产精品动漫网站| 国产做受69高潮| 国产精品初高中精品久久| 欧美 日韩 激情| 国产成人精品免费久久久久| 亚洲精品一品区二品区三品区| 丰满人妻中伦妇伦精品app| 欧美猛少妇色xxxxx| 黄色一级免费大片| 国产精品欧美激情| 欧美日韩激情视频在线观看| 色偷偷888欧美精品久久久| 天天好比中文综合网| 91精品黄色| 肉大捧一出免费观看网站在线播放 | 亚洲欧美久久久久一区二区三区| 国产在线精品一区二区中文| 国产精品久久色| 精品午夜一区二区| 久久婷婷国产麻豆91天堂| 麻豆av一区| 一区二区国产日产| 99国产视频在线| 日本免费一级视频| 日韩视频精品在线| 免费毛片网站在线观看 | 日韩**中文字幕毛片| 国产福利一区视频| 日本中文字幕久久看| 久久久久久久久影视| 欧美亚洲色图视频| 国产精品成人久久久久| 国产精品永久入口久久久| 亚洲色成人一区二区三区小说| 91好吊色国产欧美日韩在线| 日本一道本久久| 久久久国产精品一区| 国产主播精品在线| 亚洲日本欧美在线| 色狠狠久久aa北条麻妃| 国产一区二区在线免费| 亚洲欧美久久234| 精品国产一区二区三区久久久狼 | 99热亚洲精品| 青青草成人网| 色与欲影视天天看综合网| 国产精品91在线| 欧美亚洲日本黄色| 一区精品在线| 久久久久久久久一区| 国产亚洲情侣一区二区无| 亚洲精品欧美日韩| 久久精品亚洲国产| chinese少妇国语对白| 日韩女优人人人人射在线视频| 国产精品夫妻激情| 久久人人爽人人爽人人片av高请| 日韩精品在在线一区二区中文| 国产精品成人一区二区| 国产精品69页| 国产一区高清视频| 日本国产一区二区三区| 精品乱子伦一区二区三区| 国产精彩免费视频| 国产一区二区三区播放| 日韩videos| 一区二区三区四区不卡| 精品久久久av| 久久偷看各类wc女厕嘘嘘偷窃| 国产尤物99| 欧美亚洲成人网| 日韩中文字幕av在线| 久久夜色精品国产| 久久久久久国产精品免费免费 | 91国自产精品中文字幕亚洲 | 国产成人免费91av在线| 超碰97在线播放| 黄色片免费在线观看视频| 中文字幕欧美日韩一区二区| 日韩中文字幕在线精品| 99久久精品免费看国产一区二区三区| 欧美影院在线播放| 亚洲欧美综合一区| 久久久www成人免费精品张筱雨 | 国产经典久久久| 久久精品青青大伊人av| 亚洲一区中文字幕| 91高跟黑色丝袜呻吟在线观看| 色综合久久88色综合天天提莫| 国产精品啪视频| 久久99精品久久久久久三级| 国产精品亚洲一区二区三区| 欧美一二三区| 日本网站免费在线观看| 一区二区三区国| 日韩亚洲精品电影| 久久婷婷开心| 99视频在线| 国产精品一区二区a| 精品视频导航| 虎白女粉嫩尤物福利视频| 青青在线视频免费| 午夜精品久久久久久99热软件| 欧美激情一二区| 精品国产乱码久久久久久88av | 一本大道熟女人妻中文字幕在线| www.欧美精品一二三区| 久久久成人精品一区二区三区| 99视频日韩| www.av一区视频| 国产精品一区二区三区在线播放| 免费高清在线观看免费| 欧美视频在线第一页| 日韩色妇久久av| 日本久久中文字幕| 欧美影院在线播放| 欧美日韩dvd| 欧美精品第三页| 欧美极品一区| 免费中文日韩| 日韩精品一区二区免费| 日本黄网站免费| 日韩精品无码一区二区三区免费| 日韩欧美视频网站| 欧美污视频久久久| 欧美怡春院一区二区三区| 欧美在线中文字幕| 欧美日韩国产精品一卡| 欧美精品二区三区四区免费看视频| 热门国产精品亚洲第一区在线| 日韩精品第一页| 欧美日韩免费高清| 国内精品久久久久久| 国产偷人视频免费| 成人久久久久久久久| 99国精产品一二二线| 91精品国产高清久久久久久久久| 97碰在线观看| 国产成人一区二区三区免费看 | 国产欧亚日韩视频| 成人免费aaa| 久久九九视频| 色天天综合狠狠色| 国产精品成熟老女人| 在线天堂一区av电影| 午夜美女久久久久爽久久| 无码人妻h动漫| 欧美在线视频一区| 国产深夜男女无套内射| www亚洲国产| 久久国产亚洲精品无码| 国产精品偷伦免费视频观看的 | 一区二区三区三区在线| 亚洲福利av在线| 人体精品一二三区| 国产做受69高潮| 国产精品av在线| 国产精品偷伦免费视频观看的| 久久国产精品久久精品| 伊人色综合久久天天五月婷| 日韩欧美一区二区三区四区 | 久久精品视频一| 欧美精品九九久久| 欧美一级片中文字幕| 欧美日韩另类综合| 粉嫩av一区二区三区天美传媒| 久久精品日产第一区二区三区精品版| 国产精品视频1区| 亚洲最新免费视频| 奇米成人av国产一区二区三区| 国产美女在线一区| 久久精彩视频| 中文字幕一区二区三区乱码| 亚洲av综合色区| 免费毛片网站在线观看 | 精品中文字幕在线| 日韩欧美电影一区二区| 成人毛片100部免费看| 国产精品久久久久久搜索| 久久成人综合视频| 国产欧美日韩专区发布| 欧美日韩国产成人| 丝袜一区二区三区| 91免费视频国产| 欧美精品久久久久久久久久久| 亚州欧美日韩中文视频| 久久久国产精品x99av| 91精品国产综合久久久久久久久| 欧美精品与人动性物交免费看| 亚洲在线观看视频| 精品视频一区二区三区四区| 99www免费人成精品|