From 302fe40e710c07109be78b9e572fb2882ea9bee3 Mon Sep 17 00:00:00 2001 From: KAMLESH KUMAR <67225880+kamleshsah@users.noreply.github.com> Date: Thu, 1 Oct 2020 00:34:34 +0530 Subject: [PATCH 1/2] Update s1n02-accessing-a-series.ipynb --- s1n02-accessing-a-series.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s1n02-accessing-a-series.ipynb b/s1n02-accessing-a-series.ipynb index 2104bb7..79e161f 100644 --- a/s1n02-accessing-a-series.ipynb +++ b/s1n02-accessing-a-series.ipynb @@ -349,7 +349,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "And to use the positional index explicitly, you can use the property `iloc`." + "And to use the positional index explicitly, you can use the property `iloc`.The difference in loc and iloc is loc gets rows (or columns) with particular labels from the index wherea iloc gets rows (or columns) at particular positions in the index." ] }, { From 2681bdbbb2824db72c9c76a200782fa177e5e03a Mon Sep 17 00:00:00 2001 From: Kamlesh Kumar Date: Fri, 25 Dec 2020 12:26:33 +0530 Subject: [PATCH 2/2] new --- utils.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/utils.py b/utils.py index 9f2b70a..3f81fd0 100644 --- a/utils.py +++ b/utils.py @@ -9,4 +9,7 @@ def make_chaos(df, sample_size, columns, fn): for col in columns: some[col] = some[col].apply(fn) # Update the original DataFrame - df.update(some) \ No newline at end of file + df.update(some) + + +#13233 \ No newline at end of file