1. Homepage
  2. Programming
  3. IFB104 Building IT Systems - Take-Home Task 1: Bubble Charts

IFB104 Building IT Systems - Take-Home Task 1: Bubble Charts

Engage in a Conversation
QUTIFB104Building IT SystemsBubble ChartsPython

IFB104 Building IT Systems JIT, Nov 2023 CourseNana.COM

Take-Home Task 1: Bubble Charts (30%) CourseNana.COM

Overview CourseNana.COM

One of the most basic functions of any IT system is to process a given data set to produce some form of human-readable output. This task requires you to produce a visual image based on data stored in a list. It tests your abilities to: CourseNana.COM

  • Iterate through sequences of data values; CourseNana.COM

  • Perform arithmetic operations; CourseNana.COM

  • Display information in a visual form; and CourseNana.COM

  • Produce reusable code. CourseNana.COM

    Goal CourseNana.COM

    You are required to write a Python program which processes data stored in a list to produce a “bubble chart.” Bubble charts are a common way to visually display data sets that have values in three dimensions. In our case, however, we will not draw simple “bubbles” (dots), but will use the abilities of Turtle graphics to show the bubbles as icons which visually represent the data items whose values they portray. CourseNana.COM

    The data values to be displayed each consists of a quadruple, specifying the icon style, and the corresponding x, y and z components for this data item. You are required to use Turtle graphics to draw a corresponding bubble chart for each icon in a list. Each icon drawn must precisely match the dimensions specified, and each icon must be clearly distinct. Your program must work for any of the given data sets, and any other similar data sets in the same format. You have a free choice in the style of icons to be displayed, however. CourseNana.COM

    Examples CourseNana.COM

    To get you started, you will find a Python template bubble_charts.py accompanying these instructions. When you run this program it will produce an empty coordinate grid as shown overleaf. Notice that a numeric scale, from -350 to 350 in the x and y directions, has been displayed to help you position and proportion your icons accurately. CourseNana.COM

IFB104 Building IT Systems JIT, Nov 2023 CourseNana.COM

In the Python template file you will also find several data sets in the form of lists, e.g., CourseNana.COM

Each element of the list is itself a list which specifies the style of a particular icon to be displayed and its components in the x, y and z dimensions. For instance, the first item in data_set_14 above requires us to draw an instance of “Icon 1” at x coordinate 212, y coordinate -165, and of size 90. All measurements are in pixels. The x and y values will always be in the range -350 to 350, and the z values will be in the range 0 to 350. (A weakness of bubble charts is that they are not useful for presenting data that may have a negative z value.) CourseNana.COM

Given such a data set, you are required to populate the coordinate grid with corresponding icons, at appropriate positions and of appropriate sizes. The figure overleaf shows a bubble chart drawn from the above data set. In this case our five icon styles are intended to look like the logos for the classic DC Comics superheroes, Batman, Superman, Wonder Woman, The Flash and Green Lantern. CourseNana.COM

IFB104 Building IT Systems JIT, Nov 2023 CourseNana.COM

In this case our “Icon 1” style bubble looks like Superman’s emblem. As per the given values, it is centred on x coordinate 212 and y coordinate -165, and is of width 90 pixels. Similarly, our “Icon 3” style bubble, represented by The Flash’s logo, is at x coordinate 84, y coordinate 208, and is of height 124 pixels. CourseNana.COM

The size of each icon, i.e., its third or “z’” value, defines the required width and/or height of the icon on the screen. Since the width and height of a chosen symbol may not be the same, the larger of these two values determines the icon’s “size.” CourseNana.COM

To help you develope and calibrate your icons, we have provided five data sets, named data_set_00 to data_set_04, which draw just one icon each at several different sizes, including one in the exact centre of the chart. For instance, using data_set_00 our sample solution produces the image below. CourseNana.COM

IFB104 Building IT Systems JIT, Nov 2023 CourseNana.COM

In this case the specification ['Icon 0', 0, 0, 100] has caused our program to draw Batman’s emblem precisely in the centre of the chart with an exact width of 100 pixels. Similarly, using data_set_03, the specification ['Icon 3', 0, 0, 100] produces The Flash’s logo in the centre of the chart with an exact height of 100 pixels, since this icon is higher than it is wide. CourseNana.COM

Finally, because you have a free choice of which five icons to draw, we need an explanation of what they are. You are therefore required to produce a legend on your chart, explaining to the viewer what the overall group of icons represents and what each individual one denotes. The legend may appear either to the right or left of the coordinate grid. In our case, where the icons represent superheroes, the legend is drawn as shown overleaf. CourseNana.COM

IFB104 Building IT Systems JIT, Nov 2023 CourseNana.COM

Putting all these elements together produces a complete bubble chart with a coordinate grid, icons of various sizes denoting data values in three dimensions, and a legend explaining what the icons represent. The following example was produced by our “superheroes” solution using data_set_09. CourseNana.COM

IFB104 Building IT Systems JIT, Nov 2023 CourseNana.COM

Specific requirements CourseNana.COM

To complete this task you are required to extend the given bubble_charts.py template file by completing the function draw_bubble_chart so that it can draw bubble charts by following a given data set that specifies the style and dimensions of the icons to be displayed. In addition, your chart must include a legend explaining what each of the icons denotes. CourseNana.COM

To get started, you first need to choose a collection of five icons to draw. Simple geometric shapes, such as squares, circles, etc, are not acceptable. Suggested sources of ideas for sets of icons include the following. CourseNana.COM

  • It must produce at least five different styles of icon. The icons must be clearly distinct in colour and shape. The icons must be non-trivial, i.e., they must not be simple geometric shapes such as circles and squares. We would expect that each icon would comprise at least two separate shapes and colours, typically more. Effort should be put into making your drawing of the icon look like the “real” one. (We admit that our Turtle-based drawing of Superman’s emblem is far from perfect, but it is still clear which superhero it represents!) CourseNana.COM

  • When your draw_bubble_chart function is called with a particular data set, the icons must be drawn to precisely match the specifications in the data set in terms of their style, position and size. Importantly, all features of each icon must scale proportionately when it is drawn at different sizes. CourseNana.COM

  • You may not import any modules or files into your program other than those already included in the given bubble_charts.py template. In particular, you may not CourseNana.COM

IFB104 Building IT Systems JIT, Nov 2023 CourseNana.COM

import any image files for use in creating your icons. All five icons must be drawn using basic Turtle graphics functions only. CourseNana.COM

  • The legend must be easy to read and understand and must clearly identify what each icon represents. CourseNana.COM

  • Your solution must work for all of the given data sets. You may not change the data sets provided, but you can add additional sets if you like. CourseNana.COM

  • Your program code must be presented in a professional manner. See the coding guidelines in the IFB104 Code Marking Guide (on Blackboard under Assessment) for suggestions on how to achieve this. what feature of the icon the corresponding code produces. CourseNana.COM

    Most importantly, you are not required to copy the set of icon styles shown in this document. Instead you are strongly encouraged to be creative and to choose your own set of icons from some area that interests you personally. CourseNana.COM

    Development hints CourseNana.COM

  • This is not a difficult task, but due to the need to create multiple icon styles that can be drawn at different sizes, it would be very repetitive if you tried to code the whole solution using ‘brute force.’  (And obviously you should aim to use the same functions to draw the icons in the legend and on the chart.) CourseNana.COM

  • To draw the icons you must use only the basic Turtle drawing functions. the icon is made of an oval (actually a stretched circle), a rectangle (a stretched square), and several triangles. On the other hand, Superman’s shield was produced just by moving the turtle to draw individual lines. CourseNana.COM

  • If you are unable to complete the whole task, just submit whatever parts you can get working. You will receive partial marks for incomplete solutions. (The hardest part of this task is making the icons scalable to different sizes, so you may want to leave this to last.) CourseNana.COM

  • To help you debug your code we have provided some data sets which don’t produce realistic looking bubble charts, but allow you to clearly see the dimensions of your icons. In particular, data sets 0 to 4 each draw one icon at different sizes, so you can use these to guide your development of each icon style. CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
QUT代写,IFB104代写,Building IT Systems代写,Bubble Charts代写,Python代写,QUT代编,IFB104代编,Building IT Systems代编,Bubble Charts代编,Python代编,QUT代考,IFB104代考,Building IT Systems代考,Bubble Charts代考,Python代考,QUThelp,IFB104help,Building IT Systemshelp,Bubble Chartshelp,Pythonhelp,QUT作业代写,IFB104作业代写,Building IT Systems作业代写,Bubble Charts作业代写,Python作业代写,QUT编程代写,IFB104编程代写,Building IT Systems编程代写,Bubble Charts编程代写,Python编程代写,QUTprogramming help,IFB104programming help,Building IT Systemsprogramming help,Bubble Chartsprogramming help,Pythonprogramming help,QUTassignment help,IFB104assignment help,Building IT Systemsassignment help,Bubble Chartsassignment help,Pythonassignment help,QUTsolution,IFB104solution,Building IT Systemssolution,Bubble Chartssolution,Pythonsolution,