- Unit 4007 Machining and Processing of Engineering Materials (D/651/0718) Assignment Brief 2026
- Unit 4006 Mechatronics (Y/651/0716) Assignment Brief 2026
- Unit 4005 Renewable Energy (R/651/0714) Assignment Brief 2026
- Unit 4004 Managing a Professional Engineering Project (L/651/0712) Assignment Brief 2026
- Unit 4003 Engineering Science I (J/651/0710) Assignment Brief 2026
- Unit 4001 Engineering Design (T/650/9628) Assignment Brief 2026
- 7COM1025 Programming for Software Engineers Assignment Brief 2026
- ENX300 Manufacturing Systems Design Assignment 1 Brief 2026
- Unit 4114 Motorcycle Engineering (R/651/3072) Assignment Brief 2026
- Unit 5001 Research Project (J/615/1502) Assignment Brief 2026
- CO507 Body Dysmorphia Disorder and Psychological First Aid in Beauty, Wellness and Aesthetic Practice (T/651/9195) Assignment Brief 2026
- Unit AP708 Clinical Aesthetic Procedures: Temporary Dermal Fillers for the Face (A/651/9197) Assignment Brief 2026
- CO602 Complication Management for Aesthetic Practice (L/651/6013) Assignment Brief 2026
- AP707 Clinical Aesthetic Procedures: Botulinum Toxin Injections for the Face (Y/651/9196) Assignment Brief 2026
- CO701 Dermatology, Anatomy and Pathophysiology for Clinical Aesthetic Practice (R/651/9194) Assignment Brief 2026
- Unit 4018 Maintenance Engineering (D/651/0736) Assignment Brief 2026
- Unit 4020 Digital Principles (J/651/0739) Assignment Brief 2026
- 4HL003 Academic, Personal & Professional Development Assignment Brief 2026
- Unit 4019 Electrical and Electronic Principles (F/651/0737) Assignment Brief 2026
- Unit 4015 Automation, Robotics and Programmable Logic Controllers (PLCs) (M/651/0731) Assignment Brief 2026
IU.ORG – DLMDSPWP01: Programming with Python – Written Assignment
WRITTEN ASSIGNMENT
Tasks for Course: DLMDSPWP01 – Programming with
Python
CONTENT
1. Task…………………………………………………………………………………………………………………………. 2
1.1 Description of the Task………………………………………………………………………………………………………………. 2
1.2 Details………………………………………………………………………………………………………………………………………. 3
1.3 Additional Task …………………………………………………………………………………………………………………………. 4
1.4 Remarks …………………………………………………………………………………………………………………………………… 4
2. Additional information for the evaluation of the written assignment ………………………………………. 5
3. Tutorial Support.………………………………………………………………………………………………………… 5
1. TASK
The starting point for your term paper will be the course book, the contents of which will serve as the basis for an in-depth examination of one of the following questions. You are expected to research and cite from sources
corresponding to your chosen topic.
1.1 Description of the Task
You get (A) 4 training datasets and (B) one test dataset, as well as (C) datasets for 50 ideal functions. All data respectively consists of x-y-pairs of values.
Structure of all CSV-files provided:
X Y
x1 y1
… …
xn yn
Your task is to write a Python-program that uses training data to choose the four ideal functions which are the best fit out of the fifty provided (C) *.
i) Afterwards, the program must use the test data provided (B) to determine for each and every x-ypair of values whether or not they can be assigned to the four chosen ideal functions**; if so, the program also needs to execute the mapping and save it together with the deviation at hand
ii) All data must be visualized logically
iii) Where possible, create/ compile suitable unit-test
* The criterion for choosing the ideal functions for the training function is how they minimize the sum of all ydeviations squared (Least-Square)
** The criterion for mapping the individual test case to the four ideal functions is that the existing maximum deviation of the calculated regression does not exceed the largest deviation between training dataset (A) and
the ideal function (C) chosen for it by more than factor sqrt(2)
In order to give proof of your skills in Python related to this course, you need to adhere to certain criteria when solving the exercise; these criteria are subsequently described under ‘Details.’
Do You Need Assignment of This Question
1.2 Details
You are given four training datasets in the form of csv-files. Your Python program needs to be able to independently compile a SQLite database (file) ideally via sqlalchemy and load the training data into a single fivecolumn spreadsheet / table in the file. Its first column depicts the x-values of all functions. Table 1, at the end of this subsection, shows you which structure your table is expected to have. The fifty ideal functions, which are also
provided via a CSV-file, must be loaded into another table. Likewise, the first column depicts the x-values, meaning there will be 51 columns overall. Table 2, at end of this subsection, schematically describes what
structure is expected. After the training data and the ideal functions have been loaded into the database, the test data (B) must be loaded line-by-line from another CSV-file and – if it complies with the compiling criterion – matched to one of the four functions chosen under i (subsection above). Afterwards, the results need to be saved into another fourcolumn-table in the SQLite database. In accordance with table 3 at end of this subsection, this table contains four columns with x- and y-values as well as the corresponding chosen ideal function and the related deviation.
Finally, the training data, the test data, the chosen ideal functions as well as the corresponding / assigned datasets are visualized under an appropriately chosen representation of the deviation.
Please create a Python-program which also fulfills the following criteria:
− Its design is sensibly object-oriented
− It includes at least one inheritance
− It includes standard- und user-defined exception handlings
− For logical reasons, it makes use of Pandas’ packages as well as data visualization via Bokeh, sqlalchemy, as well as others
− Write unit-tests for all useful elements
− Your code needs to be documented in its entirety and also include Documentation Strings, known as ”docstrings“
Table 1: The training data’s database table:
| X | Y1 (training) | Y2 (training) | Y3 (training) | Y4 (training) |
|---|---|---|---|---|
| x1 | y11 | y21 | y31 | y41 |
| … | … | … | … | … |
| xn | y1n | y2n | y3n | y4n |
Table 2: The ideal functions’ database table:
| X | Y1 (ideal) | Y2 (ideal) | … | Y50 (ideal) |
|---|
| x1 | y11 | y21 | … | y50_1 |
| … | … | … | … | … |
| xn | y1n | y2n | … | y50_n |
The database table of the test-data, with mapping and y-deviation
| X (test func) | Y (test func) | Delta Y (test func) | No. of ideal func |
|---|
| x1 | y11 | y21 | N1 |
| … | … | … | … |
| xn | y1n | y2n | y3n |
Buy Answer of This Assessment & Raise Your Grades
1.3 Additional Task
Assume that your successfully created project is on the Version Control System Git and has a Branch called develop. On this Branch, all operations of the developer team are combined. Write the Git-commands necessary to clone the branch and? develop on your local PC. Imagine that you have
added a new function. Write all necessary Git-commands to introduce this project to the team’s develop Branch.
Please note: You need the commands for commit, push. Afterwards, you would make a Pull-request and your contribution would be added “merged” to the develop Branch after one or several of your team has reviewed your
changes.
1.4 Remarks
The Dataset for this task will be made available on request for each particular student. Therefore, a ticket for the tutor should be opened, whereupon the access to the data will be granted. A copy will be sent to the responsible
persons – thus a later manipulation by the students is prevented.
Your entire source code is expected to be contained in the appendix of your written assignment, so that we are able to test your entire program, including the outputs. Your input data is not required.
The aim is to fully reconstruct your work, your decisions and your assessment of the task result through your assignment.
2. ADDITIONAL INFORMATION FOR THE EVALUATION OF THE WRITTEN ASSIGNMENT
When conceptualizing and writing the written assignment, the evaluation criteria and explanations given in the
writing guidelines should be considered.
3. TUTORIAL SUPPORT
In this written assignment task, several support channels are open; as the student, it is your responsibility to select your preferred support channel. The tutor is available for technical consultations and for formal and general
questions regarding the procedure for processing the research essay. However, the tutor is not required to approve outlines or parts of texts and drafts. Independent preparation is part of the examination work and is
included in the overall evaluation. However, general editing tips and instructions are given in order to help you get started with the written assignment.
Are You Looking for Answer of This Assignment or Essay



