Hi there,I am trying to tell if a Java project is a web application or an android app.
So I run an boa example to check operating_systems attributes of projects in GitHub and SourceForge datasets.
However, the output of the job running with dateset "2015 September/GitHub (small)" is empty (job 35574).
I wonder if the operating_systems attribute is available for the GitHub datasets, and if operating_systems attribute is the right way to go.
Thanks in advance.
The submitted example boa program is as below:
***********************************************************************************
# this is an example query
# Counting the 5 most used platforms
p: Project = input;
counts: output top(5) of string weight int;
exists (i: int; match(`^java$`, lowercase(p.programming_languages[i])))
foreach(j: int; def(p.operating_systems[j]))
counts << p.operating_systems[j] weight 1
***********************************************************************************
Best,
Zhiyuan