Skip to content

Commit afec250

Browse files
committed
pandas: Update/fix link references
1 parent 096ec9c commit afec250

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

docs/integrate/pandas/tutorial-jupyter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ So, let’s get started.
2121

2222
If you’re new to CrateDB and want to get started quickly and easily, a great option is to try the **Free Tier** in CrateDB Cloud. With the **Free Tier**, you have a limited Cluster that is free forever; no payment method is required. Now, if you are ready to experience the full power of CrateDB Cloud, take advantage of the 200$ in free credits to try the cluster of your dreams.
2323

24-
To start with CrateDB Cloud, [navigate to the CrateDB website](https://crate.io/download?hsCtaTracking=caa20047-f2b6-4e8c-b7f9-63fbf818b17f%7Cf1ad6eaa-39ac-49cd-8115-ed7d5dac4d63) and follow the steps to create your CrateDB Cloud account. Once you log in to the CrateDB Cloud UI, select **Deploy Cluster** to create your free cluster, and you are ready to go!
24+
To start with CrateDB Cloud, [navigate to the CrateDB website](https://cratedb.com/download?hsCtaTracking=caa20047-f2b6-4e8c-b7f9-63fbf818b17f%7Cf1ad6eaa-39ac-49cd-8115-ed7d5dac4d63) and follow the steps to create your CrateDB Cloud account. Once you log in to the CrateDB Cloud UI, select **Deploy Cluster** to create your free cluster, and you are ready to go!
2525

2626
![cratedb-cloud-free-tier](https://us1.discourse-cdn.com/flex020/uploads/crate/original/1X/26fc603ca998d39631f93f1eb7c5dbd30f437e56.gif)
2727

@@ -81,7 +81,7 @@ When I read [yfinance](https://pypi.org/project/yfinance/)’s documentation (ve
8181

8282
I want to download data from all S&P-500 companies, so having a list with all their symbols would be perfect.
8383

84-
I then found [this tutorial by Edoardo Romani](https://towardsdatascience.com/how-to-automate-financial-data-collection-with-python-using-tiingo-api-and-google-cloud-platform-b11d8c9afaa1), which shows how to get the symbols from the [List of S&P-500 companies' Wikipedia page](https://en.wikipedia.org/wiki/List_of_S%26P_500_companies) and store them in a list.
84+
I then found [this tutorial by Edoardo Romani](https://medium.com/data-science/how-to-automate-financial-data-collection-with-python-using-tiingo-api-and-google-cloud-platform-b11d8c9afaa1), which shows how to get the symbols from the [List of S&P-500 companies' Wikipedia page](https://en.wikipedia.org/wiki/List_of_S%26P_500_companies) and store them in a list.
8585

8686
So, in my Notebook, I import [BeautifulSoup 4.10.0](https://beautiful-soup-4.readthedocs.io/en/latest/) and [requests 2.26.0](https://pypi.org/project/requests/) to pull out HTML files from Wikipedia and create the following function:
8787

docs/integrate/pandas/tutorial-start.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,15 @@ To follow along with this tutorial, you will need:
1919

2020
## Setting up CrateDB
2121

22-
Before we can start using CrateDB, we need to set it up. You can either download and install CrateDB locally via [Docker](https://crate.io/docs/crate/tutorials/en/latest/basic/index.html#docker) or [tarball](https://crate.io/docs/crate/tutorials/en/latest/basic/index.html#try-cratedb-without-installing) or use a [CrateDB Cloud](https://crate.io/download?hsCtaTracking=caa20047-f2b6-4e8c-b7f9-63fbf818b17f%7Cf1ad6eaa-39ac-49cd-8115-ed7d5dac4d63) instance with an option of the free cluster.
22+
Before we can start using CrateDB, we need to set it up. You can either download and
23+
install CrateDB locally via {ref}`Docker <cratedb-docker>` or
24+
{ref}`tarball <install-tarball>` or use a
25+
[CrateDB Cloud](https://cratedb.com/download?hsCtaTracking=caa20047-f2b6-4e8c-b7f9-63fbf818b17f%7Cf1ad6eaa-39ac-49cd-8115-ed7d5dac4d63)
26+
instance with an option of the free cluster.
2327

2428
Once you have a running instance of CrateDB, create a new table to store the customer data dataset. Here is an SQL command to create a table:
2529

26-
``` sql
30+
```sql
2731
CREATE TABLE IF NOT EXISTS "doc"."customer_data" (
2832
"customerid" INTEGER,
2933
"gender" TEXT,

0 commit comments

Comments
 (0)