99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

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

代寫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

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

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

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

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

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          欧美日本在线| 欧美在线视频免费播放| 国产精品一区二区久久久| 久久人人九九| 亚洲淫性视频| 国产精品一区二区三区免费观看| 亚洲欧美日韩一区二区在线 | 在线观看日韩www视频免费 | 亚洲高清在线观看| 欧美视频一区二区三区| 欧美一区二区三区播放老司机 | 亚洲午夜电影网| 国产欧美日韩不卡| 蜜臀av国产精品久久久久| 99亚洲精品| 国产真实乱偷精品视频免| 免费成人高清在线视频| 亚洲欧美激情在线视频| 影音先锋中文字幕一区二区| 欧美日韩国产美| 久久激情中文| 9l国产精品久久久久麻豆| 国产香蕉97碰碰久久人人| 欧美福利在线观看| 久久成人资源| 一本色道久久88综合日韩精品| 国模私拍一区二区三区| 蜜臀av一级做a爰片久久| 亚洲一区二区三区在线播放| 伊人久久亚洲美女图片| 国产精品久久久久久久9999| 麻豆精品一区二区综合av| 中文亚洲字幕| 亚洲免费观看高清完整版在线观看熊| 国产视频一区在线| 国产精品国产一区二区| 欧美不卡高清| 久久免费高清视频| 亚洲在线观看免费视频| 99精品欧美一区| 亚洲国产精品黑人久久久| 国产视频一区免费看| 欧美色视频在线| 欧美激情一二三区| 免费日韩成人| 久久女同精品一区二区| 久久国产精品亚洲va麻豆| 亚洲综合欧美日韩| 国产精品99久久久久久久vr| 亚洲毛片在线看| 亚洲精品久久久一区二区三区| 激情成人综合网| 黄色小说综合网站| 国产真实乱偷精品视频免| 国产精品一区在线观看你懂的| 欧美日韩一二三四五区| 欧美日韩福利在线观看| 欧美激情精品久久久久久| 免费在线欧美黄色| 欧美成ee人免费视频| 美日韩精品视频| 欧美成人亚洲成人日韩成人| 久久综合精品一区| 牛人盗摄一区二区三区视频| 女人香蕉久久**毛片精品| 麻豆av一区二区三区| 欧美a级在线| 欧美另类极品videosbest最新版本| 女生裸体视频一区二区三区| 欧美国产一区视频在线观看| 欧美日本亚洲| 国产精品爱啪在线线免费观看 | 国产午夜精品美女视频明星a级 | 亚洲黄色小视频| 亚洲三级性片| 在线一区视频| 午夜精品成人在线| 欧美理论在线播放| 国产精品啊啊啊| 99在线观看免费视频精品观看| 久久综合中文字幕| 国产日韩在线亚洲字幕中文| 这里只有精品在线播放| 欧美大片在线观看| 在线观看精品视频| 久久人人爽人人| 黄色成人片子| 久久久www成人免费精品| 国产伦精品一区二区三区免费迷| 99视频超级精品| 欧美日韩亚洲另类| 在线亚洲+欧美+日本专区| 欧美激情一二区| 亚洲全黄一级网站| 欧美精品久久久久久久| 亚洲精品中文字幕有码专区| 免费毛片一区二区三区久久久| 韩国av一区二区| 久久另类ts人妖一区二区| 狠狠干综合网| 久久精品在线观看| 在线观看国产精品网站| 免费视频一区| 日韩一二在线观看| 欧美色网在线| 欧美一区三区三区高中清蜜桃 | 亚洲午夜羞羞片| 国产精品日韩欧美一区| 欧美一区=区| 尤物九九久久国产精品的特点| 久久久久五月天| 亚洲国产三级在线| 欧美日韩福利在线观看| 中文欧美在线视频| 国产欧美午夜| 欧美不卡激情三级在线观看| 99这里只有精品| 亚洲国产精品va| 亚洲午夜精品国产| 欧美精品七区| 亚洲成人在线视频播放| 欧美一级大片在线观看| 欧美日韩妖精视频| 亚洲国产精品电影| 久久精品视频在线免费观看| 欧美日在线观看| 亚洲激情中文1区| 久久久久久9999| 国产日本欧美一区二区三区| 中日韩在线视频| 欧美日韩精品不卡| 亚洲精品中文字幕在线| 老色鬼久久亚洲一区二区| 国产亚洲精品久久飘花| 亚洲男同1069视频| 欧美三区视频| 一区二区三区免费看| 欧美成人高清视频| 一区二区三区中文在线观看| 欧美与黑人午夜性猛交久久久| 国精品一区二区三区| 久久狠狠婷婷| 亚洲欧美久久久| 日韩视频不卡中文| 一色屋精品亚洲香蕉网站| 国产精品免费在线| 欧美日本网站| 欧美精品午夜| 欧美成人dvd在线视频| 久久国产加勒比精品无码| 99国产精品国产精品久久| 亚洲高清电影| 伊人成人在线视频| 国产亚洲成年网址在线观看| 欧美天堂亚洲电影院在线播放| 久久一区二区三区国产精品 | 国产精品一区二区视频| 欧美视频免费在线观看| 欧美精品手机在线| 欧美国产欧美亚洲国产日韩mv天天看完整| 欧美一区二区视频97| 欧美一级大片在线免费观看| 亚洲一区一卡| 亚洲欧美高清| 欧美一区二区三区在线| 欧美一区二区三区视频在线观看| 亚洲一区国产精品| 亚洲自拍偷拍福利| 亚洲专区国产精品| 亚洲欧美99| 欧美尤物一区| 久久久久高清| 欧美成人中文字幕| 欧美三级视频在线| 国产精品视频精品| 国产欧美视频一区二区| 狠狠88综合久久久久综合网| 加勒比av一区二区| 亚洲精品视频啊美女在线直播| 91久久久在线| 亚洲视频一区二区| 欧美亚洲网站| 老司机aⅴ在线精品导航| 免费在线成人av| 国产精品v欧美精品v日韩精品| 国产精品午夜在线观看| 极品av少妇一区二区| 日韩一级精品视频在线观看| 一区二区欧美视频| 欧美在线国产精品| 欧美成人r级一区二区三区| 欧美视频亚洲视频| 伊人久久婷婷色综合98网| 日韩特黄影片| 久久精品国产亚洲精品| 欧美成人免费全部观看天天性色| 欧美午夜精品| 黄网站免费久久| 亚洲一区二区三区四区五区黄| 久久久精品一区二区三区|