Axis operations and annotations for matplotlib-compatible API Contains axis limits, labels, scales, text, and annotation functions
Set the x-axis label for the global figure (pyplot-style)
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | label_text |
Set the y-axis label for the global figure (pyplot-style)
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | label_text |
Set the title for the global figure (pyplot-style)
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | title_text |
Add a legend to the global figure (pyplot-style)
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in), | optional | :: | position | ||
character(len=*), | intent(in), | optional | :: | box | ||
real(kind=8), | intent(in), | optional | :: | fontsize |
Set the x-axis limits for the global figure (pyplot-style)
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=8), | intent(in) | :: | xmin | |||
real(kind=8), | intent(in) | :: | xmax |
Set the y-axis limits for the global figure (pyplot-style)
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=8), | intent(in) | :: | ymin | |||
real(kind=8), | intent(in) | :: | ymax |
Set the x-axis scale type (linear, log, symlog)
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | scale | |||
real(kind=8), | intent(in), | optional | :: | threshold |
Set the y-axis scale type (linear, log, symlog)
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | scale | |||
real(kind=8), | intent(in), | optional | :: | threshold |
Set the line width for subsequent plot elements This affects all plot elements added after this call
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=8), | intent(in) | :: | width |
Update y-data for the last plot added to the figure Useful for animation or updating existing plots
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=8), | intent(in), | dimension(:) | :: | ydata |