File tree Expand file tree Collapse file tree 2 files changed +55
-0
lines changed
content/course/manipulation/02a_pandas_tutorial Expand file tree Collapse file tree 2 files changed +55
-0
lines changed Original file line number Diff line number Diff line change
1
+ /* ------------------------------
2
+ DATAFRAME RENDERING
3
+ ---------------------------------*/
4
+
5
+ .dataframe {
6
+ border : none
7
+ }
8
+
9
+ .dataframe table {
10
+ margin-left : auto ;
11
+ margin-right : auto ;
12
+ border : none ;
13
+ border-collapse : collapse ;
14
+ border-spacing : 0 ;
15
+ color : black ;
16
+ font-size : 12px ;
17
+ table-layout : fixed ;
18
+ }
19
+
20
+ .dataframe thead {
21
+ border-bottom : 1px solid black ;
22
+ vertical-align : bottom ;
23
+ }
24
+
25
+ .dataframe tr , .dataframe th , .dataframe td {
26
+ text-align : right ;
27
+ vertical-align : middle ;
28
+ padding : 0.5em 0.5em ;
29
+ line-height : normal ;
30
+ white-space : normal ;
31
+ max-width : none ;
32
+ border : none ;
33
+ }
34
+
35
+ .dataframe th {
36
+ font-weight : bold ;
37
+ }
38
+ .dataframe tbody tr :nth-child (odd ) {
39
+ background : #f5f5f5 ;
40
+ }
41
+ .dataframe tbody tr :hover {
42
+ background : rgba (66 , 165 , 245 , 0.2 );
43
+ }
44
+ /*
45
+ borrowed from
46
+ https://github.com/jupyter/notebook/blob/9de5042e1058dc8aef7632f313e3e86c33390d31/notebook/static/notebook/less/renderedhtml.less#L77-L109
47
+ */
48
+
49
+
50
+
51
+ /* -------------------
52
+ CUSTOM BOXES
53
+ --------------------*/
54
+
1
55
.box-exercise ,
2
56
.box-warning ,
3
57
.box-caution ,
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ from utils import print_badges
38
38
print_badges("content/course/manipulation/02a_pandas_tutorial.qmd")
39
39
```
40
40
41
+
41
42
Dans ce tutoriel ` pandas ` , nous allons utiliser:
42
43
43
44
* Les émissions de gaz à effet de serre estimées au niveau communal par l'ADEME. Le jeu de données est
You can’t perform that action at this time.
0 commit comments