开始使用免费开始使用

Multiple line plots

In this exercise, you will create a figure with two line plots in the same graph, displaying the closing price of two ETF funds, the Invesco QQQ and the iShares Russell 1000 Growth (IWF). This will let you compare these funds directly and identify trends or correlations between them.

The DataFrames and Plots packages have been imported and the DataFrames qqq and iwf have been loaded for you, so feel free to explore them in the shell before starting the task.

本练习是课程的一部分

Introduction to Data Visualization with Julia

查看课程

交互式实操练习

通过完成这段示例代码来试试这个练习。

# Plot the QQQ closing price, give it a title
____(
	qqq.____,
	qqq.____,
    label="QQQ",
    linecolor=:green,
    linewidth=2
)
# Give the plot a title
____(____)
xlabel!("Date")
ylabel!("Price (USD)")
编辑并运行代码