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

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

DSCI 510代寫、代做Python編程語言
DSCI 510代寫、代做Python編程語言

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



DSCI 510: Principles of Programming for Data Science
Final Project Guidelines
In the ffnal project for this class, you will have the opportunity to apply the knowledge and
programming skills you have learned to a real-world problem. Your project should focus on
web scraping (or collection data through APIs), data cleaning, analysis, and visualization using
Python.
Final Project Due Date: December 19th, 2024 at 4pm PT
Final grade submission via Grading and Roster System (GRS) for Fall 2024 is the week after
December 19th and we should have graded every project by then. We need to set some time aside
in order to be able to grade your projects, therefore we have to be strict about this deadline.
Please refer to the Academic Calendar for the speciffc dates.
Final Project Submission via GitHub Classroom
In order to submit your ffnal project assignment you will need to accept the assignment on our
GitHub Classroom (similar to the lab assignments). With the ffnal assignment repository you
will get a template where you can upload all of your ffles. To get started, Project Proposal
You may send a one page proposal document (in a PDF format) describing your ffnal project.
This proposal should include the following:
1. Name of your ffnal project and a short synopsis/description (1 paragraph max).
2. What problem are you trying to solve, which question(s) are you trying to answer?
3. How do you intend to collect the data and where on the web is it coming from?
4. What type of data cleaning and/or analysis are you going to perform on the data?
5. What kind of visualizations are you going to use to illustrate your ffndings?
There is no offfcial due date for the proposal, but the sooner you send it to us the sooner you will
get feedback on it. We will provide feedback and suggest changes if required. This is usually to
test the feasibility of the project and give you a sense of whether you need to scale back because
it is too ambitious or if you need to do more work in order to improve your grade. Please upload
the original proposal in the same repository with the other ffles of your ffnal project.
Note: For faster processing, you can send us an email: Gleb (gleb@isi.edu), Mia (osultan@usc.edu)
or Zhivar (souratih@usc.edu) an email with the subject “DSCI 510: Final Project Proposal”,
 please also upload your proposal document to the ffnal project GitHub repository. The
email should contain a link to your GitHub repository or the proposal.pdf ffle itself.
1Project Goals and Steps
1. Data Collection (20%)
You should identify websites or web resources from which you will get raw data for your
project. You can either web-scrape data or collect data using publicly available APIs.
This could include news articles, e-commerce websites, social media posts, weather data,
or any other publicly available web content. This step should be fairly sophisticated as
to demonstrate the techniques you have learned in the class. Use multiple data sources
to compare different data in your analysis. Using Python libraries like BeautifulSoup and
requests, you should be able to write scripts to scrape data from the chosen websites. This
step includes making HTTP requests, handling HTML parsing, and extracting relevant
information.
Please note that if you need to collect data that changes over time, you might want to
setup a script that runs every day and collects the data at a certain time of the day. That
way you can collect enough data to run your analysis for the ffnal project later.
We recommend that you scrape data from static websites, or use publicly available APIs.
If you scrape data from dynamically generated pages, you might run into issues as certain
websites are not keen on giving away their data (think sites like google, amazon, etc).
Please note that some APIs are not free and you need to pay to use them - you should
try to avoid those as when we are grading your ffnal project we should be able to replicate
your code without paying for an API.
2. Data Cleaning (20%)
Once your data collection is complete, you will need to clean the data in order to be able
to process it. This will involve handling missing values, cleaning HTML tags, removing
duplicates, and converting data into a structured format for analysis in Python. If your
raw data is not in English, you should attempt to translate the data into English as part
of this step.
Depending on the size of your data you can upload both raw and preprocessed data to the
data folder in the repository of your ffnal project.
3. Data Analysis (20%)
In this step, you will perform an analysis on the scraped data to gain insights or answer
speciffc questions. You should perform statistical analyses, generate descriptive statistics,
using libraries such as Pandas or NumPy (or any other library you prefer to use). You
should add a detailed description of this step and your speciffc methods of analysis in the
ffnal report at the end.
4. Data Visualization (20%)
Last but not least, you should create plots, graphs, or charts using Matplotlib, Seaborn,
D3.js, Echarts or any other data visualization library, to effectively communicate your
ffndings. Visualizations created in this step could be static or interactive, if they are
interactive - you need to describe this interaction and its added value in the ffnal report.
Our team should be able to replicate your interactive visualizations when we are grading
your ffnal projects.
5. Final Report (20%)
Finally, you will submit a ffnal report, describing your project, the problem you are trying
to solve or the questions that you are trying to answer. What data did you collect as well
2as how it was collected. What type of data processing/cleaning did you perform? You
would also need to explain your analysis and visualizations. See Final Report section for
more information.
The percentages used for grading here are used as a general guideline, but it can be changed
based on your project. If your data collection is trivial but the analysis is fairly complicated,
you could score more points in the data analysis step to compensate. Similarly, complexity of
the ffnal data visualizations could be used to get additional points if you decide to make your
visualizations more interactive and engaging to the end users.
Project Deliverables
GitHub Repository
We will create an assignment for the ffnal project. You will need to accept the assignment and
commit your code and any additional ffles (e.g. raw data or processed data) to the repository.
Here is a generic structure of the repository:
github_repository/
.gitignore
README.md
requirements.txt
data/
raw/
processed/
proposal.pdf
results/
images/
final_report.pdf
src/
get_data.py
clean_data.py
analyze_data.py
visualize_results.py
utils/
And here is a description of what each of the folders/ffles could contain:
1. proposal.pdf
The project proposal ffle (PDF). This is what you can send us in advance to see if your
project meets the minimum requirements or if the scope is too large and if you need to
scale it back. See the section: Project Proposal.
2. requirements.txt
This ffle lists all of the external libraries you have used in your project and the speciffc
version of the library that you used (e.g. pandas, requests, etc). You can create this ffle
manually or use the following commands in your virtual (conda) environment:
You can run this command to create the requirements.txt ffle:
3pip freeze >> requirements.txt
To install all of the required libraries based on this requirements ffle, run this command:
pip install -r requirements.txt
3. README.md
This ffle typically contains installation instructions, or the documentation on how to install
the requirements and ultimately run your project. Here you can explain how to run your
code, explain how to get the data, how to clean data, how to run analysis code and ffnally
how to produce the visualizations. We have created sections in the README.md ffle for
you to ffll in. Make sure you ffll in all of the sections.
Please note that this ffle is most important to us as we will try to reproduce your results
on our end to verify that everything is working. If there is anything that is tricky about
the installation of your project, you want to mention it here to make it easier for us to run
your project.
4. data/ directory
Simply put, this folder contains the data that you used in this project.
(a) The raw data folder will have the raw ffles you downloaded/scraped from the web. It
could contain (not exhaustive) html, csv, xml or json ffles. If your raw data happens
to be too large to upload to GitHub (i.e. larger than 25mb) then please upload your
data to the USC Google Drive and provide a link to the data in your README.md
ffle.
(b) The processed data folder will contain your structured ffles after data cleaning. For
example, you could clean the data and convert them to JSON or CSV ffles. Your
analysis and visualization code should perform operations on the ffles in this folder.
Note: Make sure your individual ffles are less than 25mb in size, you can use
USC Google Drive if the ffles are larger than 25mb. In that case, please provide
a link for us to get to the data in your README.md ffle.
5. results/ directory
This folder will contain your ffnal project report and any other ffles you might have as part
of your project. For example, if you choose to create a Jupyter Notebook for your data
visualizations, this notebook ffle should be in this results folder. If you have any static
images of the data visualizations, those images should go in this folder as well.
6. src/ directory
This folder contains the source code for your project.
(a) get data.py will download, web-scrape or fetch the data from an API and store it in
the data/raw folder.
(b) clean data.py will clean the data, transform the data and store structured data ffles
in the data/processed folder, for example as csv or json ffles.
(c) analyze data.py will contain methods used to analyze the data to answer the project
speciffc questions.
(d) visualize results.py will create any data visualizations using matplotlib or any other
library to conclude the analysis you performed.
4(e) utils/ folder should contain any utility functions that you need in order to process
your code, this could be something generic such as regular expressions used to clean
the data or to parse and lowercase otherwise case-sensitive information.
7. .gitignore
Last but not least, the .gitignore ffle is here to help ignore certain meta-data or otherwise
unnecessary ffles from being added to the repository. This includes ffles that were used
in development or were created as a by-product but are not necessary for you to run the
project (for example, cached ffles added by using various IDEs like VS Code or PyCharm.
Please note that this project structure is only a suggestion, feel free to add more ffles or change
the names of ffles and folders as you prefer. That being said, please take into account that we
will be looking for the speciffc ffles to get the data, clean the data, analyze data, etc. You can
change this structure or create more ffles in this repository as you like but please do mention
where what is in your README.md ffle.
Final Report
You’ll ffnd an empty template for the ffnal report document (pdf) in the GitHub repository once
you accept our ffnal project assignment. At the very least, your ffnal report should have the
following sections:
1. What is the name of your project?
(a) Please write it as a research question and provide a short synopsis/description.
(b) What is/are the research question(s) that you are trying to answer?
2. What type of data did you collect?
(a) Specify exactly where the data is coming from.
(b) Describe the approach that you used for data collection.
(c) How many different data sources did you use?
(d) How much data did you collect in total? How many samples?
(e) Describe what changed from your original plan (if anything changed) as well as the
challenges that you encountered and resolved.
3. What kind of analysis and visualizations did you do?
(a) Which analysis techniques did you use, and what are your ffndings?
(b) Describe the type of data visualizations that you made.
(c) Explain the setup and meaning of each element.
(d) Describe your observations and conclusion.
(e) Describe the impact of your ffndings.
4. Future Work
(a) Given more time, what would you do in order to further improve your project?
5(b) Would you use the same data sources next time? Why yes or why not?
Your final project report should be no less than 2 and no more than 5 pages including any images
(e.g. of data visualizations) that you want to embed in the report. Please spend a decent amount
of time on the report. Your report is the first file we will read. We will not know how great your
project is if you don’t explain it clearly and in detail.


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



 

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

    合肥圖文信息
    流體仿真外包多少錢_專業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怎么修改定
  • 短信驗證碼 寵物飼養 十大衛浴品牌排行 suno 豆包網頁版入口 wps 目錄網 排行網

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    91精品国产一区二区三区动漫| 久久免费看av| www婷婷av久久久影片| 国产精品美女在线观看| 日本一二三区视频在线| 高清一区二区三区四区五区| 国产精品日韩专区| 欧美专区第一页| 国产不卡av在线免费观看| 亚洲欧美日韩精品在线| 国产欧美精品一区二区三区 | 国模吧无码一区二区三区| 国产成人91久久精品| 懂色av粉嫩av蜜臀av| av免费观看国产| 又粗又黑又大的吊av| 国产精品一区二区欧美黑人喷潮水| 国产精品久久久av| 欧美精品欧美精品系列c| 日韩中文在线视频| 日韩国产一级片| 久久国产精品视频在线观看| 日本一区二区在线视频观看| 久久综合伊人77777麻豆| 亚洲高潮无码久久| 91精品视频在线| 亚洲 高清 成人 动漫| 91精品国产高清| 亚洲91精品在线亚洲91精品在线| 91精品国产99| 日韩无套无码精品| www.欧美三级电影.com| 激情深爱综合网| 精品久久一二三| 成人精品在线观看| 亚洲欧美日韩国产成人综合一二三区| 成人乱人伦精品视频在线观看| 一区二区三区四区欧美| 国产精品夜夜夜一区二区三区尤| 欧美大码xxxx| 国产麻豆电影在线观看| 自拍视频一区二区三区| 国产精品99久久久久久www| 亚洲精品日韩av| 久久久久久久久久久亚洲| 欧美日韩一区在线观看视频| 久热精品在线视频| 91久久精品www人人做人人爽| 无码人妻aⅴ一区二区三区日本| 久久精品久久精品国产大片| 欧美亚洲在线播放| 欧美成人免费在线观看| 99国产精品白浆在线观看免费| 日本在线精品视频| 日韩综合中文字幕| 国产一区二区中文字幕免费看| 一区一区视频| 久久国产精品免费一区| 精品日韩在线播放| 亚洲精品免费av| 日韩有码在线视频| 精品日韩美女| 亚洲精品在线免费| 久久精品成人一区二区三区| 国模一区二区三区私拍视频| 一区二区三区不卡在线| 国产a级一级片| 国产在线精品91| 都市激情久久久久久久久久久| 久久久久久久久久久国产| 国产在线拍揄自揄视频不卡99| 中文字幕免费高| 日韩一区二区av| 国产精品一区二区三区在线| 日韩视频 中文字幕| 国产精品成人av性教育| 91精品国产99久久久久久 | 久久久欧美精品| 精品欧美日韩在线| 亚洲伊人久久综合| 国产精品视频网站| 99精品在线直播| 欧美极品色图| 亚洲影视九九影院在线观看| 久久精品成人动漫| 久久综合色视频| 国产日韩精品在线播放| 日韩精品资源| 亚洲欧美国产一区二区| 国产精品免费在线免费| 久久久久久99| 国产剧情日韩欧美| 妓院一钑片免看黄大片| 性视频1819p久久| 欧美大胆在线视频| 国产成人免费91av在线| 久久露脸国产精品| 国产精品一区二区三区成人| 欧美日韩二三区| 日本精品免费在线观看| 一区不卡字幕| 久久香蕉国产线看观看网| 国产www精品| 97人人香蕉| 国产欧美精品久久久| 极品日韩久久| 欧美一区激情视频在线观看| 欧美一级片免费在线| 一本久道久久综合| 精品国产aⅴ麻豆| 国产精品视频免费观看| 久久久久久久久久久久久国产| 国产精品18久久久久久麻辣| 国产色婷婷国产综合在线理论片a 国产色一区二区三区 | 欧美中文在线观看国产| 日韩一级片免费视频| 亚洲资源视频| 中文字幕在线中文| 亚洲综合中文字幕在线观看| 一区二区三区我不卡| 成人精品一区二区三区电影免费| 欧美激情视频在线免费观看 欧美视频免费一 | 久久久女女女女999久久| 欧美精品一区二区视频| 青青在线免费观看| 欧洲日韩成人av| 欧美一级大片在线观看| 欧日韩在线观看| 秋霞成人午夜鲁丝一区二区三区| 日韩av一区二区三区在线观看 | 国模精品视频一区二区三区| 日韩成人手机在线| 日本久久久精品视频| 亚洲中文字幕无码不卡电影| 在线观看一区二区三区三州| 欧美日韩福利电影| 在线观看国产一区| 亚洲国产精品久久久久爰色欲| 亚洲不卡中文字幕| 日本一区二区在线视频观看| 日韩欧美一区二| 欧美亚洲第一区| 黄色一级片国产| 国产欧美日韩小视频| 成人羞羞国产免费网站| yy111111少妇影院日韩夜片| 91精品久久久久久久久| 国产精品69av| 国产成人一区三区| 国产成人无码av在线播放dvd| 国产精品久久国产| 亚洲一二三区精品| 欧美一区二区三区在线播放| 日韩国产欧美一区| 国产一区免费在线观看| 99国产精品久久久久老师| 久久久久国产精品熟女影院| 久久精品国产免费观看| 国产精品国产精品| 亚洲一区二区三区在线免费观看| 欧美一级免费播放| 激情五月综合色婷婷一区二区| 国产伦精品一区二区三区免费视频| 成人精品久久一区二区三区| 久久人人爽人人爽人人av | 久久无码高潮喷水| 国产精品视频成人| 一本色道久久综合亚洲二区三区 | 一区二区成人国产精品| 日韩欧美亚洲日产国| 蜜臀久久99精品久久久酒店新书| 国产精品揄拍一区二区| 久久精品国产第一区二区三区最新章节 | 日韩欧美激情一区二区| 国产日韩专区在线| 国产成+人+综合+亚洲欧洲| 国产精品黄色影片导航在线观看| 亚洲精品一区二区三区四区五区| 欧美中日韩免费视频| 成人免费在线小视频| 国产成人精品综合| 亚洲综合在线中文字幕| 欧美性视频网站| 91免费国产视频| 国产精品极品美女粉嫩高清在线 | 久久综合伊人77777| 日韩av成人在线| 国产一区二区在线视频播放| 9191国产视频| 精品乱子伦一区二区三区| 日本久久久网站| 成人精品久久久| 久久亚洲国产成人| 热re99久久精品国产66热| 粉嫩av四季av绯色av第一区| 久久久久一本一区二区青青蜜月| 中文字幕不卡每日更新1区2区| 欧美第一黄网| 久久精品xxx| 亚洲人一区二区|