Ciarán
Ciarán

Reputation: 1

No results when using BigQuery to search GDELT

I want BigQuery to report the number of articles and the average tone for certain institutions, going back to 2011 if possible.

My code is

SELECT   
  AvgTone,
  NumArticles
FROM `gdelt-bq.full.events`
WHERE Year = 2013
AND (Actor1Name= 'European Banking Authority')

This indicates that 25gb of data will be used, but the query returns no results

Upvotes: 0

Views: 34

Answers (0)

Related Questions