Questions tagged [reuters]

Reuters is a news organization which provides many public datasets and APIs

Reuters is a news organization underneath the larger parent media company Thomson Reuters. They have many APIs available to developers which are summarized here

37 questions
5
votes
2 answers

R connect to Thomson Reuters Eikon

I search through the Web and did not find out a package connecting to Thomson Reuters Eikon. It's a financial datasource, more or less similar to Bloomberg. Bloomberg is supported through R with this package:…
Colonel Beauvel
  • 30,423
  • 11
  • 47
  • 87
4
votes
5 answers

Accessing Reuters data in Python

I am currently successfully downloading live Bloomberg market prices, as well as historical series, using the service's COM API and win32com. Does anyone have any experience doing the same for Reuters live and historical data into Python? I know…
Thomas Browne
  • 23,824
  • 32
  • 78
  • 121
3
votes
5 answers

Resource reuters not found

I'm using windows system, python 3.7 when I install: import nltk nltk.download('reuters') it has no problem to import, and I also already install nltk in my cmd but when I conduct the code: import matplotlib.pyplot as plt from collections import…
Shin Yu Wu
  • 1,129
  • 4
  • 14
  • 23
3
votes
0 answers

tm Package error: Error definining Document Term Matrix

I am analyzing the Reuters 21578 corpus, all the Reuters news articles from 1987, using the "tm" package. After importing the XML files into an R data file, I clean the text--convert to plaintext, convert to lwer case, remove stop words etc. (as…
Dr. Beeblebrox
  • 838
  • 2
  • 13
  • 30
2
votes
0 answers

Why do error message appear in R using websocket (Reuters)?

I an using the same code as in this example https://github.com/Refinitiv/websocket-api/blob/master/Applications/Examples/R/market_price.R However, got the following error in this line, can anybody help to fix it? > # Start websocket handshake >…
John Mayer
  • 103
  • 7
2
votes
3 answers

NLTK reuters datasets not found

I downloaded Reuters dataset from nltk using the following command: import nltk nltk.download('reuters') I got a confirmation that the datset was downloaded and I can see the it under "C:/Users/username/AppData/Roaming/nltk_data". However, when I…
sareem
  • 429
  • 1
  • 8
  • 23
2
votes
1 answer

Reconstruct news texts from Keras' reuters dataset

I cant seem to make sense of the dataset provided by Keras' reuters dataset. The set is loaded like so: (x_train, y_train), (x_test, y_test) = reuters.load_data() As far as I understand the "x" arrays are arrays of sequences (lists) of word…
AstronAUT
  • 639
  • 2
  • 7
  • 11
1
vote
5 answers

Upgraded C++ project to VS2010, now get AccessViolationException

We recently upgraded some C++ code from VS2005 -> VS2010. This C++ code is called RFA_RMDS, and it is an in-house wrapper around the Reuters RFA libraries. This wrapper is used by some C# code in turn. So, to be clear: C# -> C++ Wrapper…
ck.
  • 1,056
  • 1
  • 14
  • 25
1
vote
2 answers

Is there a dictionary for labels in keras.reuters.datasets?

I have recently started coding neural networks with keras. I managed to get an AI running that predicts the classes of the reuters newswire dataset. However, I am desperately looking for a way to convert my predictions (intgers) to topics. There has…
mogr18
  • 29
  • 3
1
vote
1 answer

Too many redirects to reuters rss web services

In Reuters' RSS web services, loading rss feeds from certain countries throws java.net.ProtocolException: Too many redirects on loading RSS feed on both UI and Background . (Specially in case of two countries: INDIA and USA) . How can I solve this…
Prasham
  • 6,646
  • 8
  • 38
  • 55
1
vote
1 answer

Java TCP IP server client readline for TOF simulator

I try to write an application read and send data to Reuters TOF simulator. I send a message to TOF server with file seperator (FS ASCII(28)) like here package tr.com.calikbank.bnspr.treasury.reutersClient; import java.io.BufferedReader; import…
1
vote
1 answer

ReutersSource in R

library(tm) reut21578 <- system.file("texts", "crude", package = "tm") reuters <- Corpus(DirSource(reut21578), readerControl = list(reader = readReut21578XML)) file <- "reut-0001.xml" reuters <-…
nisa
  • 13
  • 3
1
vote
0 answers

Reuters OpenDACS .Net Framework

Scenario As some of you may have heard, OpenDACS is an open source data-access control system for enforcing data usage permissions. DACS comes integrated with the Reuters platform but you can use OpenDACS for extending third-party software. I'm…
Goober
  • 13,146
  • 50
  • 126
  • 195
1
vote
1 answer

SVMlight train data formatting

I am trying to classify the reuters text using svm light but my train data does not follow the format <'line> .=. <'target> <'feature>:<'value> <'feature>:<'value> ... <'feature>:<'value> # <'info> it is of the form <'line> .=.…
1
vote
1 answer

Using R for Text Mining Reuters-21578

I am trying to do some work with the well known Reuters-21578 dataset and am having some trouble with loading the sgm files into my corpus. Right now I am using the command require(tm) reut21578 <- system.file("reuters21578", package = "tm") reuters…
user1422508
  • 99
  • 1
  • 2
  • 6
1
2 3