Skip to content

Commit e2a7c24

Browse files
Jupytext sync (#49)
* fixes to Rmd from Daniela's errata * synced the notebooks * syncing notebooks * all but Chapter10 * chapter 10
1 parent 132bda1 commit e2a7c24

24 files changed

Lines changed: 10712 additions & 3181 deletions

Ch02-statlearn-lab.Rmd

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
---
2+
jupyter:
3+
jupytext:
4+
cell_metadata_filter: -all
5+
formats: ipynb,Rmd
6+
main_language: python
7+
text_representation:
8+
extension: .Rmd
9+
format_name: rmarkdown
10+
format_version: '1.2'
11+
jupytext_version: 1.16.7
12+
---
13+
114
# Introduction to Python
215

316
<a target="_blank" href="https://colab.research.google.com/github/intro-stat-learning/ISLP_labs/blob/v2.2/Ch02-statlearn-lab.ipynb">
@@ -70,7 +83,7 @@ print('fit a model with', 11, 'variables')
7083
The following command will provide information about the `print()` function.
7184

7285
```{python}
73-
print?
86+
# print?
7487
7588
```
7689

@@ -220,7 +233,7 @@ documentation associated with the function `fun`, if it exists.
220233
We can try this for `np.array()`.
221234

222235
```{python}
223-
np.array?
236+
# np.array?
224237
225238
```
226239
This documentation indicates that we could create a floating point array by passing a `dtype` argument into `np.array()`.

0 commit comments

Comments
 (0)