Improve Readme.md
Change-Id: I8deb36fe9e952c3f976069c82a06ca05475166fa
diff --git a/Readme.md b/Readme.md
index f2d6aae..40613ed 100644
--- a/Readme.md
+++ b/Readme.md
@@ -46,12 +46,14 @@
Please note that some arguments in the original RKorAPClient functions use characters that are not allowed in Python keyword argument names.
For these cases, you can however use Python's `**kwargs` syntax.
For example, to get the result of `corpusStats` as a `pandas.DataFrame`, and print the size of the whole corpus in tokens, you can write:
-```
+```python
+from KorAPClient import KorAPConnection
+kcon = KorAPConnection(verbose=True)
print(kcon.corpusStats(**{"as.df": True})['tokens'])
```
## Examples
-#### Frequencies over years and countries
+#### Frequencies of "Hello World" over years and countries
```python
from KorAPClient import KorAPClient, KorAPConnection
import plotly.express as px