pszemraj commited on
Commit
256d5ba
·
1 Parent(s): 43a2840

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -2
README.md CHANGED
@@ -37,7 +37,9 @@ widget:
37
  - text: |
38
  import pandas as pd
39
  data = {'Name': ['Tom', 'Nick', 'John'], 'Age': [20, 21, 19]}
40
- df = pd.DataFrame(data).convert_dtypes() # eda
 
 
41
  example_title: Pandas DataFrame
42
  - text: |
43
  def factorial(n):
@@ -56,9 +58,11 @@ widget:
56
  else:
57
  example_title: Fibonacci Function
58
  - text: |
59
- import matplotlib.pyplot as plt import numpy as np
 
60
  x = np.linspace(0, 10, 100)
61
  # simple plot
 
62
  example_title: Matplotlib Plot
63
  - text: |
64
  def reverse_string(s:str) -> str:
 
37
  - text: |
38
  import pandas as pd
39
  data = {'Name': ['Tom', 'Nick', 'John'], 'Age': [20, 21, 19]}
40
+ df = pd.DataFrame(data).convert_dtypes()
41
+ # eda
42
+
43
  example_title: Pandas DataFrame
44
  - text: |
45
  def factorial(n):
 
58
  else:
59
  example_title: Fibonacci Function
60
  - text: |
61
+ import matplotlib.pyplot as plt
62
+ import numpy as np
63
  x = np.linspace(0, 10, 100)
64
  # simple plot
65
+
66
  example_title: Matplotlib Plot
67
  - text: |
68
  def reverse_string(s:str) -> str: