1 00:00:00,000 --> 00:00:02,069 Hi, welcome back. In the previous video, 2 00:00:02,070 --> 00:00:04,200 we build this time series graph of 3 00:00:04,230 --> 00:00:07,620 average ratings shown on a daily basis. 4 00:00:07,860 --> 00:00:09,240 And now you see that we have some 5 00:00:09,270 --> 00:00:11,730 unwanted labels here such as Temperature 6 00:00:11,730 --> 00:00:15,240 here, we have kilometers as an ending of 7 00:00:15,240 --> 00:00:18,540 the x axis labels. So I'm going to 8 00:00:18,540 --> 00:00:22,110 quickly change these in my code. Now, 9 00:00:22,110 --> 00:00:24,570 you can either do that through Python by 10 00:00:24,570 --> 00:00:28,050 using that dictionary.notation, or 11 00:00:28,050 --> 00:00:29,850 for these things, I would suggest you 12 00:00:29,850 --> 00:00:32,280 just go through the JavaScript code 13 00:00:32,280 --> 00:00:36,240 directly. So for example, we're 14 00:00:36,240 --> 00:00:38,310 talking about the x axis and here we 15 00:00:38,310 --> 00:00:41,250 have Altitude. So the x axis should 16 00:00:41,250 --> 00:00:42,508 actually be 17 00:00:42,532 --> 00:00:45,241 [No audio] 18 00:00:45,266 --> 00:00:48,030 Date, Date, and then we have 19 00:00:48,030 --> 00:00:50,460 this labels, the format of the x axis 20 00:00:50,460 --> 00:00:53,370 labels. So it has this kilometer ending, 21 00:00:53,615 --> 00:00:55,655 the one that you show, that you see in 22 00:00:55,680 --> 00:00:58,080 here, kilometer. If you want something 23 00:00:58,080 --> 00:00:59,640 else, just write it down here. 24 00:00:59,970 --> 00:01:02,010 Otherwise, just delete it, and leave the 25 00:01:02,010 --> 00:01:05,190 value as it is, don't delete these kinds 26 00:01:05,190 --> 00:01:08,220 of JavaScript placeholders. You can also 27 00:01:08,220 --> 00:01:09,930 change the rangeDescription, even 28 00:01:09,930 --> 00:01:12,450 though this doesn't show anywhere. So 29 00:01:12,450 --> 00:01:15,390 I'll move on with Temperature. So that 30 00:01:15,420 --> 00:01:19,290 is y axis where we have the Average Rating. 31 00:01:20,470 --> 00:01:22,740 What else? We have this Celsius degree 32 00:01:22,740 --> 00:01:24,540 symbol here, I'm going to delete that. 33 00:01:24,564 --> 00:01:28,595 [No audio] 34 00:01:28,620 --> 00:01:30,360 And we have this Temperature 35 00:01:30,360 --> 00:01:32,880 name here, which is actually the name we 36 00:01:32,880 --> 00:01:35,250 get here in the popup window. So 37 00:01:35,250 --> 00:01:38,310 Temperature that corresponds to that. So 38 00:01:38,310 --> 00:01:41,430 you may say, again here, Average 39 00:01:41,460 --> 00:01:46,770 Rating, and then Ctrl call and see, run 40 00:01:46,770 --> 00:01:50,640 again, and let's see the changes. So 41 00:01:50,640 --> 00:01:53,730 reload. Yeah, Average Rating here, Date 42 00:01:53,730 --> 00:01:57,330 here, Average Rating there. We still see 43 00:01:57,330 --> 00:02:00,720 this kilometer in the popup, you see 44 00:02:00,750 --> 00:02:05,735 506 kilometer, that is here in the 45 00:02:05,760 --> 00:02:11,280 tooltip. So you want to delete that and 46 00:02:11,280 --> 00:02:15,360 delete that as well. So the tooltip has 47 00:02:15,360 --> 00:02:18,488 this headerFormats, which is a series.name, 48 00:02:18,518 --> 00:02:21,366 so the Temperature, and it was 49 00:02:21,390 --> 00:02:22,860 Temperature before, now it's Average 50 00:02:22,893 --> 00:02:25,863 Rating. So that is series.name. 51 00:02:26,730 --> 00:02:30,630 And we also have point.x. So it's 52 00:02:30,630 --> 00:02:33,240 going to show the x value. In our case, 53 00:02:33,240 --> 00:02:36,540 that is the number, and so the index 54 00:02:36,540 --> 00:02:39,260 column, which is a number from 0 upto 55 00:02:39,285 --> 00:02:42,270 some number, so the number of 56 00:02:42,270 --> 00:02:45,510 the row, and that is the Average Rating 57 00:02:45,660 --> 00:02:46,701 that you see there. 58 00:02:46,726 --> 00:02:49,321 [No audio] 59 00:02:49,346 --> 00:02:50,700 So we'll run again, 60 00:02:50,790 --> 00:02:54,180 and this time everything should be 61 00:02:54,840 --> 00:02:57,840 fine. And that ends this video, I'll 62 00:02:57,840 --> 00:02:59,126 talk to you in the next one.