下面是完整代码:
```python
# Create a figure and an array of axes: 2 rows, 1 column with shared y axis
fig, ax = plt.subplots(2, 1, sharey=True)
# Plot Seattle precipitation data in the top axes
ax[0].plot(seattle_weather.index, seattle_weather["MLY-PRCP-NORMAL"], color="blue")
ax[0].plot(seattle_weather.index, seattle_weather["MLY-PRCP-25PCTL"], color="blue", linestyle="--")
ax[0].plot(seattle_weather.index, seattle_weather["MLY-PRCP-75PCTL"], color="blue", linestyle="--")
# Plot Austin precipitation data in the bottom axes
ax[1].plot(austin_weather.index, austin_weather["MLY-PRCP-NORMAL"], color="red")
ax[1].plot(austin_weather.index, austin_weather["MLY-PRCP-25PCTL"], color="red", linestyle="--")
ax[1].plot(austin_weather.index, austin_weather["MLY-PRCP-75PCTL"], color="red", linestyle="--")
plt.show()
```