Returns the sentence subjectivity (objective/subjective) between 0.0 and 1.0.
(s, **kwargs)
| 211 | return sentiment(s, **kwargs)[0] |
| 212 | |
| 213 | def subjectivity(s, **kwargs): |
| 214 | """ Returns the sentence subjectivity (objective/subjective) between 0.0 and 1.0. |
| 215 | """ |
| 216 | return sentiment(s, **kwargs)[1] |
| 217 | |
| 218 | def positive(s, threshold=0.1, **kwargs): |
| 219 | """ Returns True if the given sentence has a positive sentiment (polarity >= threshold). |
nothing calls this directly
no test coverage detected
searching dependent graphs…