You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19-1Lines changed: 19 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ r.linear_write()
37
37
38
38
All metrics provide a `score` attribute. See details below to capture additional detail per metric.
39
39
40
-
*Note:* In all examples below `r` is:
40
+
_Note:_ In all examples below `r` is:
41
41
42
42
```python
43
43
r = Readability(text)
@@ -153,6 +153,24 @@ print(gf.score)
153
153
print(gf.grade_level)
154
154
```
155
155
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
+
156
174
### Linear Write
157
175
158
176
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