OJS3 Stats and Reports

hi,

is there an equivalent option in OJS 3.x for the “Stats & Reports” page shown in “Journal Statistics” at the “About the Journal” page, in OJS2.x?

Should a plugin be implemented in order to exhibit this data?

it is required by some indexing organizations

thanks

Hello! I would also be very interested in knowing the answer to that question, but couldn’t find any explicit answer to it.

Thanks!

Hi,

Same here.
@asmecher is there some way?

Regards,
Tarcisio Pereira

Hi all,

OJS 3.x doesn’t currently include a built-in page containing stats for public consumption.

Regards,
Alec Smecher
Public Knowledge Project Team

Is there other way to get those statistics?
Example: My editors need know how many submissions they received in 2017.

Regards,
Tarcisio Pereira.

Hi @Tarcisio_Pereira,

You can get this by running the SQL query:

 SELECT count(*) FROM submissions WHERE date_submitted >= '2017-01-01' AND date_submitted < '2018-01-01';

(That’s for the entire installation – for a specific journal, add AND context_id = 123 (where 123 is the journal ID.)

Regards,
Alec Smecher
Public Knowledge Project Team

Hi,

This is a type of statistic that almost all my journals (186 currently) need to know.
I thought you had some native system report.
Thanks, I’ll see what I can do.

Regards,

Tarcisio Pereira.

1 Like