File tree Expand file tree Collapse file tree 1 file changed +56
-0
lines changed Expand file tree Collapse file tree 1 file changed +56
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "cells" : [
3
+ {
4
+ "cell_type" : " markdown" ,
5
+ "id" : " c1a7e244" ,
6
+ "metadata" : {},
7
+ "source" : [
8
+ " <a target=\" _blank\" href=\" https://colab.research.google.com/github/lukebarousse/Python_Data_Analytics_Course/blob/main/4_Problems/Blank Python Notebook.ipynb\" >\n " ,
9
+ " <img src=\" https://colab.research.google.com/assets/colab-badge.svg\" alt=\" Open In Colab\" />\n " ,
10
+ " </a>"
11
+ ]
12
+ },
13
+ {
14
+ "cell_type" : " markdown" ,
15
+ "id" : " e9a14a61" ,
16
+ "metadata" : {},
17
+ "source" : [
18
+ " # Blank Python Notebook\n " ,
19
+ " A blank Colab notebook to work practice problems from my [\" Python for Data Analytics Course\" ](https://www.youtube.com/watch?v=wUSDVGivd-8)."
20
+ ]
21
+ },
22
+ {
23
+ "cell_type" : " code" ,
24
+ "execution_count" : null ,
25
+ "id" : " cee9fe11" ,
26
+ "metadata" : {},
27
+ "outputs" : [],
28
+ "source" : [
29
+ " !pip install datasets\n " ,
30
+ " import pandas as pd\n " ,
31
+ " from datasets import load_dataset\n " ,
32
+ " import matplotlib.pyplot as plt\n " ,
33
+ " \n " ,
34
+ " dataset = load_dataset('lukebarousse/data_jobs')\n " ,
35
+ " df = dataset['train'].to_pandas()\n " ,
36
+ " \n " ,
37
+ " df['job_posted_date'] = pd.to_datetime(df['job_posted_date'])"
38
+ ]
39
+ },
40
+ {
41
+ "cell_type" : " code" ,
42
+ "execution_count" : null ,
43
+ "id" : " 31e0af19" ,
44
+ "metadata" : {},
45
+ "outputs" : [],
46
+ "source" : []
47
+ }
48
+ ],
49
+ "metadata" : {
50
+ "language_info" : {
51
+ "name" : " python"
52
+ }
53
+ },
54
+ "nbformat" : 4 ,
55
+ "nbformat_minor" : 5
56
+ }
You can’t perform that action at this time.
0 commit comments