Skip to content

Commit fff198c

Browse files
author
Carmine DiMascio
committed
update README.md
1 parent c04667e commit fff198c

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ r.linear_write()
3737

3838
All metrics provide a `score` attribute. See details below to capture additional detail per metric.
3939

40-
*Note:* In all examples below `r` is:
40+
_Note:_ In all examples below `r` is:
4141

4242
```python
4343
r = Readability(text)
@@ -153,6 +153,24 @@ print(gf.score)
153153
print(gf.grade_level)
154154
```
155155

156+
### SMOG
157+
158+
The SMOG Readability Formula (Simple Measure of Gobbledygook) is a popular method to use on health literacy materials.
159+
160+
**_call:_**
161+
162+
```python
163+
r.smog()
164+
```
165+
166+
**_example:_**
167+
168+
```python
169+
s = r.smog()
170+
print(s.score)
171+
print(s.grade_level)
172+
```
173+
156174
### Linear Write
157175

158176
Linsear Write is a readability metric for English text, purportedly developed for the United States Air Force to help them calculate the readability of their technical manuals.

0 commit comments

Comments
 (0)