0

I am trying to do tagging of a french text, but TreeTagger needs Python which is impossible to install on my PC at work. For security reasons, it is impossible to install other programs (only R).

Is it possible to use R code for tagging which does not require neither java nor Python?

Uwe
  • 41,420
  • 11
  • 90
  • 134
Poisson
  • 1,543
  • 6
  • 23
  • 34
  • Check out the [CRAN taskviews](https://cran.r-project.org/web/views/) for R packages by subject type. – lmo Feb 10 '17 at 14:31

1 Answers1

0

At this moment there are no French POS-taggers implemented in R.

Brian O'Donnell
  • 1,836
  • 19
  • 29
  • Ok ,thank you. Is it possible to use Pos tagger (http://nlp.stanford.edu/software/tagger.shtml) in R ? – Poisson Feb 13 '17 at 16:28
  • Yes but you need Java. See the R package coreNLP at https://cran.r-project.org/web/packages/coreNLP/index.html. It is a wrapper for the Stanford CoreNLP Java library. – Brian O'Donnell Feb 13 '17 at 16:52