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
With noise() you are collecting terms in the data which might be considered as noisy in certain regards. If I am not mistaken, in one scenario - minNchar - this is handled the wrong way around. There, the tokens for which the minNchar threshold does not apply (i.e. which are shorter than minNchar) are removed and tokens which are longer than or equal to minNchar are added to the return value of noise.
With
noise()
you are collecting terms in the data which might be considered as noisy in certain regards. If I am not mistaken, in one scenario - minNchar - this is handled the wrong way around. There, the tokens for which the minNchar threshold does not apply (i.e. which are shorter than minNchar) are removed and tokens which are longer than or equal to minNchar are added to the return value of noise.If I am right, this line
polmineR/R/noise.R
Line 102 in 7f075e5
should read
instead.
The text was updated successfully, but these errors were encountered: