Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

getpstars.m 327 B

1234567891011121314151617
  1. function [ pstars ] = getpstars( pvalue )
  2. % (C) Demetrio Ferro demetrio.ferro@upf.edu
  3. % Creative Commons
  4. % Attribution-NonCommercial-ShareAlike 4.0
  5. % International Public License
  6. if pvalue <0.001
  7. pstars=' ***';
  8. elseif pvalue<0.01
  9. pstars=' ** ';
  10. elseif pvalue<0.05
  11. pstars=' * ';
  12. else
  13. pstars=' - ';
  14. end
  15. end