forked from linghang-melbourne/linghang-melbourne.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourse-list.html
1124 lines (1031 loc) · 57.9 KB
/
course-list.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0032)https://www.datacamp.com/courses -->
<html class="wf-adelle-i4-active wf-adelle-i7-active wf-adelle-n4-active wf-adelle-n7-active wf-ffdagnywebpro-i4-active wf-ffdagnywebpro-i7-active wf-ffdagnywebpro-n4-active wf-ffdagnywebpro-n7-active wf-active">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- SEO -->
<title>领航教育 | 期末冲刺课程列表</title>
<link href="css/main.css" media="all" rel="stylesheet">
<link rel="stylesheet" href="css/font-awesome.min.css">
</head>
<body>
<!-- Include the template -->
<section class="hero hero-5">
<!-- Static navbar -->
<nav class="navbar navbar-static-top" style="background-color:transparent">
<div class="container">
<div id="navbar" class="navbar-collapse collapse navmenu-fixed-right">
<ul class="nav navbar-right navbar--list width">
<li class="navbar--list-item"><a class="text-white" href="course-list.html">大学课程</a></li>
<li class="navbar--list-item"><a class="text-white" href="pricing.html">课程价格</a></li>
</ul>
</div>
</div>
</nav>
<div class="container xl-padding">
<div class="row">
<div class="col-md-7">
<div class="xl-b-margin text-white">
<h3>领航教育大学课程辅导</h3>
<h1 class="l-b-margin" style="font-size:3em">期末冲刺课程列表</h1>
<p style="font-size:20px">UoM(商科,工程,数学)、RMIT Tafe、RMIT(会计)、Monash(商科)</p>
</div>
</div>
</div>
</div>
</section>
<section class="light-bg">
<div class="container xxl-padding">
<div class="row">
<div class="col-md-8">
<!-- Step -->
<div class="row">
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-8">
<h2 style="font-size: 20px;">墨尔本大学商科</h2>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-4">
<p class="label label-success pull-right" style="background:#576E78;">11 Courses</p>
</div>
</div>
<hr>
<p class="xl-b-margin">
R is the leading open-source programming language in data science and statistics. It is used by students, academics and professionals to perform data analysis, and for building data-driven solutions and applications.
</p>
<div class="col-md-offset-1 xxl-b-margin">
<!-- Course -->
<a href="https://www.datacamp.com/courses/free-introduction-to-r">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px; margin-top: 15px; font-size: 1.15rem;">ACCT10003 Accounting Reports and Analysis</h6>
<p>作为会计专业入门的必修课之一,Accounting Reports and Analysis介绍了会计的基础知识以及会计在金融市场和内部组织中的地位。要点包含了:财务报表的组成元素,关键资产和管理激励机制的不同选择;财务报表数据的分析和解释;在组织的管理计划、控制和决策中会计信息的使用方法。
</div>
</div>
</div>
<div class="badge">
<img alt="Introduction to R" height="70" src="./course-list_files/shield_1-c1147f93d5c8cd4c2b82c1d37c011b51.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/free-introduction-to-r">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px; margin-top: 15px; font-size: 1.15rem;">BLAW20001 Corporate Law</h6>
<p>详细讲解了一部通过控制来达到安排,监管乃至终止大小公司的法律。具体分析了内部控制对公司管理,对外界乃至对资本的筹集和证券市场的影响。
</div>
</div>
</div>
<div class="badge">
<img alt="Introduction to R" height="70" src="./course-list_files/shield_1-c1147f93d5c8cd4c2b82c1d37c011b51.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/free-introduction-to-r">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px; margin-top: 15px; font-size: 1.15rem;">FNCE10001 Finance 1</h6>
<p>介绍了金融学的概念,并阐述了金融学的基本原则和相关知识。要点囊括了直接融资,安全收益率、银行和货币市场、债券市场和股票市场,离岸金融和外汇的行为金融变量,利率风险管理以及衍生证券。这些要点将结合实例,对商业中存在的风险、回报和现值进行具体分析。
</div>
</div>
</div>
<div class="badge">
<img alt="Introduction to R" height="70" src="./course-list_files/shield_1-c1147f93d5c8cd4c2b82c1d37c011b51.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/free-introduction-to-r">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px; margin-top: 15px; font-size: 1.15rem;">ACTL20001 Financial Mathematics 1</h6>
<p>涵括了复利函数;评估系列型支付,包括现金和利润这样的与时间有关的连续函数,货物价值的函数式;贷款合同和投资项目的财务分析以及特征。
</div>
</div>
</div>
<div class="badge">
<img alt="Introduction to R" height="70" src="./course-list_files/shield_1-c1147f93d5c8cd4c2b82c1d37c011b51.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/free-introduction-to-r">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px; margin-top: 15px; font-size: 1.15rem;">ECON10004 Introductory Microeconomics</h6>
<p>系统性地介绍了微观经济世界中的定义和规则。要点包括了完全竞争市场、福利分析和政府在经济中的作用,公司(生产成本)理论,博弈论和市场结构对资源配置的影响。
</div>
</div>
</div>
<div class="badge">
<img alt="Introduction to R" height="70" src="./course-list_files/shield_1-c1147f93d5c8cd4c2b82c1d37c011b51.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/free-introduction-to-r">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px; margin-top: 15px; font-size: 1.15rem;">ECON10003 Introductory Macroeconomics</h6>
<p>系统性地介绍了宏观经济世界中的定义和规则。要点包括了生产和就业等经济总量中一般价格的水平和通货膨胀,汇率,利率,货币政策和财政政策、国际收支和经济增长。特别针对目前世界上出现的较大宏观问题和政策进行具体分析。
</div>
</div>
</div>
<div class="badge">
<img alt="Introduction to R" height="70" src="./course-list_files/shield_1-c1147f93d5c8cd4c2b82c1d37c011b51.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/free-introduction-to-r">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px; margin-top: 15px; font-size: 1.15rem;">ECON10005 Quantitative Methods 1</h6>
<p>作为商科中最重要的一门基础课,QM1为所有大二的quantitative科目打下了基础。要点包括了金融数学;位置的度量和分散;概率,随机变量和预期值;抽样设计;评估和测试使用正常和t分布;简单的回归和相关性。
</div>
</div>
</div>
<div class="badge">
<img alt="Introduction to R" height="70" src="./course-list_files/shield_1-c1147f93d5c8cd4c2b82c1d37c011b51.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/free-introduction-to-r">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px; margin-top: 15px; font-size: 1.15rem;">ECON20003 Quantitative Methods 2</h6>
<p>衔接了QM1的基本概念,对会计,管理和市场营销实例进行具体分析,从数学的角度理解商业。要点包含了统计;检测人群的位置;简单地使用多元回归与时间序列横截面数据,包括推测,假设和检验,诊断;对数函数。
</div>
</div>
</div>
<div class="badge">
<img alt="Introduction to R" height="70" src="./course-list_files/shield_1-c1147f93d5c8cd4c2b82c1d37c011b51.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/free-introduction-to-r">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px; margin-top: 15px; font-size: 1.15rem;">FNCE20001 Business Finance</h6>
<p>对以下所有要点进行了阐述:澳大利亚金融行业的基本政策,风险资产定价理论,资本资产定价模型;资本预算的基本原理,包括允许通胀的方法,治疗风险;企业融资的工具,资本结构和股利政策的理论与实践决定;期权和期货等复杂的金融工具。
</div>
</div>
</div>
<div class="badge">
<img alt="Introduction to R" height="70" src="./course-list_files/shield_1-c1147f93d5c8cd4c2b82c1d37c011b51.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/free-introduction-to-r">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px; margin-top: 15px; font-size: 1.15rem;">ACCT10003 Accounting Process and Analysis</h6>
<p>作为会计专业入门的必修课之一,Accounting Process and Analysis系统性地介绍了当今商界核心的业务流程。通过记录和分析基础的业务流程,来学习会计占息系统的操作以及作用,并深入了解与收入和支出密不可分的核心业务流程事务周期以及业务报告。
</div>
</div>
</div>
<div class="badge">
<img alt="Introduction to R" height="70" src="./course-list_files/shield_1-c1147f93d5c8cd4c2b82c1d37c011b51.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/free-introduction-to-r">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px; margin-top: 15px; font-size: 1.15rem;">ACCT10002 Introductory Financial Accounting</h6>
<p>本课从填表人的角度来完成财务报表。通过学习会计记录与其报告的方法,对相关交易系统的最终判断和决策进行基础的财务报告。结合目前澳大利亚会计事务所的标准,学习如何完成一份合格的会计报告。
</div>
</div>
</div>
<div class="badge">
<img alt="Introduction to R" height="70" src="./course-list_files/shield_1-c1147f93d5c8cd4c2b82c1d37c011b51.png" width="70">
</div>
</div>
</a>
</div>
<!-- Step -->
<div class="row">
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-8">
<h2 style="font-size: 20px;">墨尔本大学工程</h2>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-4">
<p class="label label-success pull-right" style="background:#576E78;">3 Courses</p>
</div>
</div>
<hr>
<p class="xl-b-margin">
A selection of courses by prof. Andrew Conway (Princeton University) that provide a comprehensive yet friendly introduction to fundamental concepts of statistics.
</p>
<div class="col-md-offset-1 xxl-b-margin">
<!-- Course -->
<a href="https://www.datacamp.com/introduction-to-statistics">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom:0px; margin-top:15px; font-size:1.15rem;">COMP20005 Engineering Computation</h6>
<p>这门课将引导学生用更高级的代码去解决一些工程方面的难题。学习目标包括了:算法解决问题、基本数据类型、数字和字符近似数值计算、错误基本程序结构包括顺序、选择、重复功能、简单的数据存储结构、变量、数组和结构、根方程和线性代数方程组、曲线拟合和样条函数、内插和外推、数值微分和集成。
</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/conway-c9d89d1dc63cf87be98d4ce107288fc7.svg" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/introduction-to-statistics">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom:0px; margin-top:15px; font-size:1.15rem;">ENGR10004 Engineering System Design 1</h6>
<p>这门课将重心更多地放在了工程设计的具体概念以及操作方法上。要点囊括了:解决问题的工程方法,数学模型使用适当的软件工具,数据收集,数据分析,流体力学,工程过程中物质和能量守恒,在两相流质量中的输运,报告写作、沟通技巧。
</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/conway-c9d89d1dc63cf87be98d4ce107288fc7.svg" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/introduction-to-statistics">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom:0px; margin-top:15px; font-size:1.15rem;">PHYC10003 Physics 1</h6>
<p>作为衔接VCE物理的大学基础课程,本科不仅拓宽了高中所学的物理知识点,而且对于相对论,机械以及能量有着更深刻的概念理解。
</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/conway-c9d89d1dc63cf87be98d4ce107288fc7.svg" width="70">
</div>
</div>
</a>
</div>
<!-- Step -->
<div class="row">
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-8">
<h2 style="font-size: 20px;">墨尔本大学数学</h2>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-4">
<p class="label label-success pull-right" style="background:#576E78;">4 Courses</p>
</div>
</div>
<hr>
<p class="xl-b-margin">
Manipulate your data in a format that allows convenient processing. In this section you are introduced to many of the handy tools R offers for performing data manipulations.
</p>
<div class="col-md-offset-1 xxl-b-margin">
<!-- Course -->
<a href="https://www.datacamp.com/courses/dplyr-data-manipulation-r-tutorial">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">MAST20004 Probability</h6>
<p>本科全面介绍了基础的数学概率以及概率建模的基本概念。要点包括了随机实验和样本空间、概率公理和定理,离散和连续随机变量/分布(包括位置的度量、传播和形状),如何建立并生成函数,随机变量的独立性和依赖性(协方差和相关性),随机变量的分布(包括中心极限定理)的概率分布和经常出现在现实世界中的现实模型。同时本课也要求使用一维,二维(特别是二元正态)的基本概率模型包括泊松过程和马尔可夫链。
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/shield_3-a40736c625065634621df8599a201069.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/dplyr-data-manipulation-r-tutorial">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">MAST10005 Calculus 1</h6>
<p>微分学包括求导数的运算,是一套关于变化率的理论。它使得函数、速度、加速度和曲线的斜率等均可用一套通用的符号进行演绎。积分学,包括求积分的运算,为定义和计算面积、体积等提供一整套通用的方法。作为对于VCE高数的过渡科目,Level 1的微积分更强调巩固微积分的基础知识要点。
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/shield_3-a40736c625065634621df8599a201069.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/dplyr-data-manipulation-r-tutorial">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">MAST10006 Calculus 2</h6>
<p>微分学包括求导数的运算,是一套关于变化率的理论。它使得函数、速度、加速度和曲线的斜率等均可用一套通用的符号进行演绎。积分学,包括求积分的运算,为定义和计算面积、体积等提供一整套通用的方法。Level 2的微积分要点包括:函数的极限性和连续性变量序列,数列的计算,双曲线函数以及它们的倒数,水平曲线,偏导数,链规则偏导数,方向导数,切线函数和多元函数的极值;复杂指数和二重积分。
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/shield_3-a40736c625065634621df8599a201069.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/dplyr-data-manipulation-r-tutorial">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">MAST10007 Linear Algebra</h6>
<p>线性代数是关于向量空间和线性映射的一个数学分支。它包括对线、面和子空间的研究,同时也涉及到所有的向量空间的一般性质。要点包含了:线性方程组、矩阵和行列式;向量,叉积,标量三重积,线条和平面,向量空间,线性独立基础,维度;线性转换,特征值,特征向量,最小二乘估计,对称和正交矩阵。
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/shield_3-a40736c625065634621df8599a201069.png" width="70">
</div>
</div>
</a>
</div>
<!-- Step -->
<div class="row">
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-8">
<h2 style="font-size: 20px;">RMIT Tafe-Accounting</h2>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-4">
<p class="label label-success pull-right" style="background:#576E78;">5 Courses</p>
</div>
</div>
<hr>
<p class="xl-b-margin">
Data visualizations is used as a data exploration tool and as communication tool for temporary or final results. Learn everything on one of the main strengths of R: creating stunning and informative graphical visualizations.
</p>
<div class="col-md-offset-1 xxl-b-margin">
<!-- Course -->
<a href="https://www.datacamp.com/courses/ggvis-data-visualization-r-tutorial">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">ACCT-5305C-AUSCY-S1 - Carry out business activity and instalment activity statement tasks</h6>
<p>这门课系统性地分析了商业中的各种结果以及商业税收中所需的技能和知识点。这门课中的知识点已经被广泛应用于各种各样的金融服务领域。具体包括了企业内适用于个人和工作角色许可、立法、监管或认证要求的工作岗位,包括税法的各个方面(包括但不限于1936年和1997年所得税评估法案),其他相关立法和商品及服务税(GST)裁决。</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Visualization with ggvis" height="70" src="./course-list_files/shield_2-40a9e6faf8925b86f474c514b286dd7d.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/reporting-with-r-markdown">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">COSC-5937C-AUSCY-S1 - Produce job costing information</h6>
<p>本科覆盖了能力计算和记录了工作成本的产品和服务。</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/r_markdown-e0583d32d1e00aa6d6cbb5901ecf849c.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/reporting-with-r-markdown">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">OHTH-5844C-AUSCY-S1 - Contribute to health and safety of self and others</h6>
<p>这门课将教授学生健康与安全的相关技能和知识,参与工作健康和安全(WHS的)流程来保护自己和他人的健康和安全的重要性。</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/r_markdown-e0583d32d1e00aa6d6cbb5901ecf849c.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/reporting-with-r-markdown">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">OHTH-5844C-AUSCY-S1 - Contribute to health and safety of self and others</h6>
<p>这门课将教授学生健康与安全的相关技能和知识,并让学生认识到在工作中保护自己和他人的健康和安全的重要性。</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/r_markdown-e0583d32d1e00aa6d6cbb5901ecf849c.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/reporting-with-r-markdown">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">JUST-5731C-AUSCY-S1 - Make decisions in a legal context</h6>
<p>本课介绍了如何套用一些简单的商业概念在法律环境中做出决定。要点包括了识别关键机构的主要角色和法律体系,确保一切商业操作合法。所有知识点在全领域的金融服务产业中一概通用。</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/r_markdown-e0583d32d1e00aa6d6cbb5901ecf849c.png" width="70">
</div>
</div>
</a>
</div>
<!-- Step -->
<div class="row">
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-8">
<h2 style="font-size: 20px;">RMIT Tafe-Business</h2>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-4">
<p class="label label-success pull-right" style="background:#576E78;">4 Courses</p>
</div>
</div>
<hr>
<p class="xl-b-margin">
Data visualizations is used as a data exploration tool and as communication tool for temporary or final results. Learn everything on one of the main strengths of R: creating stunning and informative graphical visualizations.
</p>
<div class="col-md-offset-1 xxl-b-margin">
<!-- Course -->
<a href="https://www.datacamp.com/courses/ggvis-data-visualization-r-tutorial">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">MKTG-1296-AUSCY-S1 - Marketing Principles</h6>
<p>本科结合现实生活中的例子具体分析了一些市场经济中出现的原则。</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Visualization with ggvis" height="70" src="./course-list_files/shield_2-40a9e6faf8925b86f474c514b286dd7d.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/reporting-with-r-markdown">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">BUSM-4360-AUSCY-S1 - Design for Business</h6>
<p></p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/r_markdown-e0583d32d1e00aa6d6cbb5901ecf849c.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/reporting-with-r-markdown">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">ISYS-2427-AUSCY-S1 - Business Computing</h6>
<p></p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/r_markdown-e0583d32d1e00aa6d6cbb5901ecf849c.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/reporting-with-r-markdown">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">ECON-1247-AUSCY-S1 - Prices and Markets</h6>
<p></p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/r_markdown-e0583d32d1e00aa6d6cbb5901ecf849c.png" width="70">
</div>
</div>
</a>
</div>
<!-- Step -->
<div class="row">
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-8">
<h2 style="font-size: 20px;">RMIT Tafe-Information Technology</h2>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-4">
<p class="label label-success pull-right" style="background:#576E78;">7 Courses</p>
</div>
</div>
<hr>
<p class="xl-b-margin">
Data visualizations is used as a data exploration tool and as communication tool for temporary or final results. Learn everything on one of the main strengths of R: creating stunning and informative graphical visualizations.
</p>
<div class="col-md-offset-1 xxl-b-margin">
<!-- Course -->
<a href="https://www.datacamp.com/courses/ggvis-data-visualization-r-tutorial">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">COSC-6115C-AUSCY-S1 - Create a markup language document to specification</h6>
<p>学会如何创建并保存一个标记语言文档到规定的文本编辑器。学生将以团队的形式进行设计,在学期末完成一个小型企业网站,HTML和CSS的最新标准将被应用到这门课。</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Visualization with ggvis" height="70" src="./course-list_files/shield_2-40a9e6faf8925b86f474c514b286dd7d.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/reporting-with-r-markdown">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">COSC-6116C-AUSCY-S1 - Configure, verify and troubleshoot WAN links and IP services in a medium enterprise network</h6>
<p>这门课意在使用适当的工具、设备、软件和协议来安装,操作,并最终解决中小企业中的WAN连接以及IP端口服务的连接问题。</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/r_markdown-e0583d32d1e00aa6d6cbb5901ecf849c.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/reporting-with-r-markdown">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">BUSM-6394C-AUSCY-S1 - Develop workplace policy and procedures for sustainability</h6>
<p></p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/r_markdown-e0583d32d1e00aa6d6cbb5901ecf849c.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/reporting-with-r-markdown">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">OHTH-5829C-AUSCY-S1 - Ensure a safe workplace</h6>
<p>工业生产中的安全问题将在本课的学习过程中得到具体研究和分析。</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/r_markdown-e0583d32d1e00aa6d6cbb5901ecf849c.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/reporting-with-r-markdown">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">COSC-6112C-AUSCY-S1 - Use structured query language</h6>
<p>使用结构化查询语言(SQL)来定义、创建和操纵数据库结构。</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/r_markdown-e0583d32d1e00aa6d6cbb5901ecf849c.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/reporting-with-r-markdown">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">COSC-6111C-AUSCY-S1 - Design a database</h6>
<p>本课要点包括了数据字典的概念理解,指数,DBMS约束、业务规则、备份和恢复。</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/r_markdown-e0583d32d1e00aa6d6cbb5901ecf849c.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/reporting-with-r-markdown">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">COSC-6113C-AUSCY-S1 - Apply introductory object-oriented language skills</h6>
<p>本课教授了如何使用现有工具、文档、调试工具和测试技术支持工具来编写代码。</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/r_markdown-e0583d32d1e00aa6d6cbb5901ecf849c.png" width="70">
</div>
</div>
</a>
</div>
<!-- Step -->
<div class="row">
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-8">
<h2 style="font-size: 20px;">RMIT Tafe-Commerce</h2>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-4">
<p class="label label-success pull-right" style="background:#576E78;">4 Courses</p>
</div>
</div>
<hr>
<p class="xl-b-margin">
Data visualizations is used as a data exploration tool and as communication tool for temporary or final results. Learn everything on one of the main strengths of R: creating stunning and informative graphical visualizations.
</p>
<div class="col-md-offset-1 xxl-b-margin">
<!-- Course -->
<a href="https://www.datacamp.com/courses/ggvis-data-visualization-r-tutorial">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">ISYS-3314-AUSCY-S1 - Business Computing</h6>
<p></p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Visualization with ggvis" height="70" src="./course-list_files/shield_2-40a9e6faf8925b86f474c514b286dd7d.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/reporting-with-r-markdown">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">LAW-2497-AUSCY-S1 - Commercial Law</h6>
<p>本科覆盖了伙伴关系、破产、信托、业务名称、公司和协会名称和特许经营。</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/r_markdown-e0583d32d1e00aa6d6cbb5901ecf849c.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/reporting-with-r-markdown">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">ECON-1275-AUSCY-S1 - Prices and Markets</h6>
<p></p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/r_markdown-e0583d32d1e00aa6d6cbb5901ecf849c.png" width="70">
</div>
</div>
</a>
<!-- Course -->
<a href="https://www.datacamp.com/courses/reporting-with-r-markdown">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">ACCT-2213-AUSCY-S1 - Accounting in Organisations and Society</h6>
<p></p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/r_markdown-e0583d32d1e00aa6d6cbb5901ecf849c.png" width="70">
</div>
</div>
</a>
</div>
<!-- Step -->
<div class="row">
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-8">
<h2 style="font-size: 20px;">RMIT会计</h2>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-4">
<p class="label label-success pull-right" style="background:#576E78;">1 Course</p>
</div>
</div>
<hr>
<p class="xl-b-margin">
The amount of data in the world is growing rapidly, and when dealing with data sets these will become bigger and bigger. You will need to understand how to process, visualize, and model terrabyte- class data sets.
</p>
<div class="col-md-offset-1 xxl-b-margin">
<!-- Course -->
<a href="https://www.datacamp.com/courses/big-data-revolution-r-enterprise-tutorial">
<div class="track-well l-b-margin">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem;">Revolution R Enterprise</h6>
<p>Perform operations such as summarize, visualize and more on big data.</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Data Manipulation with dplyr" height="70" src="./course-list_files/rre-5202bf27362c1443894263186484ce0c.png" width="70">
</div>
</div>
</a>
</div>
<!-- Step -->
<div class="row">
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-8">
<h2 style="font-size: 20px;">Monash大学商科</h2>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-4">
<p class="label label-success pull-right" style="background:#576E78;">3 Courses</p>
</div>
</div>
<hr>
<p class="xl-b-margin">
Every day new tools, packages, and software applications for R are launched. In this section you can discover some of the best tools out there, and learn how to use them in your daily routine.
</p>
<div class="col-md-offset-1 xxl-b-margin">
<!-- Course -->
<div class="track-well l-b-margin">
<div class="overlay">Coming Soon</div>
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem; color:#dd5c5c">Working with the RStudio IDE</h6>
<p>How to use the RStudio IDE, R’s leading integrated development environment</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Coming soon" height="70" src="./course-list_files/coming_soon-60dab6d2b383b2ebb5ea67b960dc4a60.png" width="70">
</div>
</div>
<div class="track-well l-b-margin">
<a href="https://www.datacamp.com/courses/r-for-sas-spss-and-stata-users-r-tutorial">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem; color:#dd5c5c">R for SAS, SPSS and STATA users</h6>
<p>Focus on translating you existing knowledge of commercial software into R.</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Bob m" height="70" src="./course-list_files/bob_m-b8ef612c5356242478f84b8bda87191a.svg" width="70">
</div>
</a>
</div>
<div class="track-well l-b-margin">
<a href="https://www.datacamp.com/courses/quandl-r-tutorial">
<div class="row">
<div class="col-md-12">
<div class="content">
<h6 style="margin-bottom: 0px;margin-top: 15px; font-size: 1.15rem; color:#dd5c5c">Quandl and R</h6>
<p>Access Quandl from within R, the easiest way to find data on the internet.</p>
</div>
</div>
</div>
<div class="badge">
<img alt="Quandl2" height="70" src="./course-list_files/quandl2-9834627ab873f02e9de4e55bbbc52da6.svg" width="70">
</div>
</a>
</div>
</div>
</div>
<!-- Authors -->
<div class="col-md-3 col-md-offset-1 hidden-xs hidden-sm">
<div class="well well-white well-shadow xxl-margin text-center">
<h4 class="l-margin">In collaboration with</h4>
<div class="row l-b-margin">
<img alt="RStudio" src="./course-list_files/Rstudio-85ce2e15d02f561cd227a9b162aa750c.png" width="100">
</div>
<div class="row l-b-margin">
<img alt="RStudio" src="./course-list_files/revolution-analytics-308535f79f3059c5025a11ba61eabd69.png" width="100">
</div>
</div>
<div class="well well-white well-shadow xxl-margin text-center">
<h4 class="l-margin">Courses given by</h4>
<div class="row l-b-margin">
<a href="https://twitter.com/CornelissenJo" target="_blank" style="color:black">
<div class="col-md-5 col-md-offset-1">
<img alt="Jonathan Cornelissen" height="75" src="./course-list_files/jonathan-b494c4e1ae606c1cb2a348e4c57dffcf.jpg" style="border-radius: 50%" width="75">
<p class="color-light">Jonathan Cornelissen</p>
</div>
</a>
<a href="https://twitter.com/AndrewRAConway" target="_blank" style="color:black">
<div class="col-md-5">
<img alt="Andrew Conway" height="75" src="./course-list_files/conway-0ab6d0d02a1dc17af7c2e93cbb59e72d.jpg" style="border-radius: 50%" width="75">
<p class="color-light">Andrew Conway</p>
</div>
</a>
</div>
<div class="row l-b-margin">
<a href="https://twitter.com/StatGarrett" target="_blank" style="color:black">
<div class="col-md-5 col-md-offset-1">
<img alt="Garret Grolemund" height="75" src="./course-list_files/garret-cf25a04c6f6a676e116bdfc67f5cdfab.png" style="border-radius: 50%" width="75">
<p class="color-light">Garret Grolemund</p>
</div>
</a>
<a href="https://twitter.com/RevolutionR" target="_blank" style="color:black">
<div class="col-md-5">
<img alt="Jeremy Reynolds" height="75" src="./course-list_files/jeremy-a963715762fc234873e497eb08936b2e.jpg" style="border-radius: 50%" width="75">
<p class="color-light">Jeremy Reynolds</p>
</div>
</a>
</div>
<div class="row l-b-margin">
<a href="https://twitter.com/BobMuenchen" target="_blank" style="color:black">
<div class="col-md-5 col-md-offset-1">
<img alt="Bob Muenchen" class="top-position" height="75" src="./course-list_files/bob-2087aeac38b790730f51eaca56f3a116.jpeg" style="border-radius: 50%" width="75">
<p class="color-light">Bob Muenchen</p>
</div>
</a>
<a href="https://twitter.com/minebocek" target="_blank" style="color:black">
<div class="col-md-5">
<img alt="Mine" height="75" src="./course-list_files/mine-1ab9d7910f01fc40e307d562422f50f6.png" style="border-radius: 50%" width="75">
<p class="color-light">Mine Çetinkaya-Rundel</p>
</div>
</a>
</div>
<div class="row l-b-margin">
<a href="https://twitter.com/EricZivot" target="_blank" style="color:black">
<div class="col-md-5 col-md-offset-1">
<img alt="Eric Zivot" height="75" src="./course-list_files/zivot-6237c88a82bb2653a87de6ed7653d04f.jpeg" style="border-radius: 50%" width="75">
<p class="color-light">Eric Zivot</p>
</div>
</a>
<a href="https://twitter.com/arun_sriniv" target="_blank" style="color:black">