Skip to content

Commit 6bee548

Browse files
Update Introduction_to_Pandas_Library_and_DataFrames.md
1 parent 35baa35 commit 6bee548

File tree

1 file changed

+0
-54
lines changed

1 file changed

+0
-54
lines changed

contrib/pandas/Introduction_to_Pandas_Library_and_DataFrames.md

-54
Original file line numberDiff line numberDiff line change
@@ -112,24 +112,6 @@ cars_with_colours = pd.DataFrame({"Cars" : ["BMW","Audi","Thar","Honda"],
112112
"Colour" : ["Black","White","Red","Green"]})
113113
cars_with_colours
114114
```
115-
116-
117-
118-
119-
<div>
120-
<style scoped>
121-
.dataframe tbody tr th:only-of-type {
122-
vertical-align: middle;
123-
}
124-
125-
.dataframe tbody tr th {
126-
vertical-align: top;
127-
}
128-
129-
.dataframe thead th {
130-
text-align: right;
131-
}
132-
</style>
133115
<table border="1" class="dataframe">
134116
<thead>
135117
<tr style="text-align: right;">
@@ -214,24 +196,6 @@ record = pd.DataFrame({"Student_Name":students ,
214196
"Age" :age})
215197
record
216198
```
217-
218-
219-
220-
221-
<div>
222-
<style scoped>
223-
.dataframe tbody tr th:only-of-type {
224-
vertical-align: middle;
225-
}
226-
227-
.dataframe tbody tr th {
228-
vertical-align: top;
229-
}
230-
231-
.dataframe thead th {
232-
text-align: right;
233-
}
234-
</style>
235199
<table border="1" class="dataframe">
236200
<thead>
237201
<tr style="text-align: right;">
@@ -307,24 +271,6 @@ record.dtypes
307271
```python
308272
record.describe() # It only display the results for numeric data
309273
```
310-
311-
312-
313-
314-
<div>
315-
<style scoped>
316-
.dataframe tbody tr th:only-of-type {
317-
vertical-align: middle;
318-
}
319-
320-
.dataframe tbody tr th {
321-
vertical-align: top;
322-
}
323-
324-
.dataframe thead th {
325-
text-align: right;
326-
}
327-
</style>
328274
<table border="1" class="dataframe">
329275
<thead>
330276
<tr style="text-align: right;">

0 commit comments

Comments
 (0)