Questions tagged [annotate]

Use this tag for questions related to annotating plots, e.g. adding descriptive labels or annotations to data points.

490 questions
-1
votes
1 answer

Annotate data value at the end of line matplotlib

I am trying to add data value to the end of the line of matplotlib. This is my code: fig, ax = plt.subplots(1, 1) anz_df.plot(legend=True, ax=ax, figsize= (16,8)) ax.set_title("Number of confirmed cases between Australian' States vs New…
MikeB
  • 59
  • 1
  • 7
-1
votes
1 answer

how to annotate subplot python

I am trying to annotate a subplot. I would like to put a letter inside the plot so to help when I will write the caption.. so far I am trying in this way. no results. any help? fname='SHOT_'+str(shot) plt.figure(fname) ftitle='Time Traces -…
bruvio
  • 853
  • 1
  • 9
  • 30
-1
votes
2 answers

add diagonal reference line to ecdfplot

I have the following call to ecdfplot in the latticeExtra package: ecdfplot(~ saved_multtest + saved_unadjusted + saved_bonferroni + saved_hochberg + saved_independent, data=saved, auto.key=list(corner=c(0.8,0.2)), main="Null case",…
Neal Oden
  • 57
  • 4
-1
votes
1 answer

How remove data points from text annotate?

The following script generates a scatter plot with annotated data points. I'd like remove circle markers from the plot and just show the labels. fig, ax = Plot.subplots() ax.scatter(Y0_mean, Y1_mean) for i, txt in…
YNR
  • 867
  • 2
  • 13
  • 28
-1
votes
2 answers

ggplot annotate label error with paste unexpected symbol

I've searched this topic and tried a bunch of different things but still can't get my labels annotated in the right way. On my label I want to show "R^2 = 0.81, p-value = 0.04, n = 50". So far I've tried: df <- data.frame(x = rnorm(10), y =…
Jen
  • 331
  • 2
  • 11
-1
votes
1 answer

How to create a user created textbox on top of matplotlib figure?

BackGround I'm making this software right plot data as boxplots and scatter plots. To make the graph more informative and clear I wanted the user to be able to drag-create a textbox on top of the figure if they wanted to add notes. This way when…
Markus T.
  • 113
  • 1
  • 13
-2
votes
1 answer

Why you have to anotate classes in Spring boot with service etc.?

Everyone says that it's because spring boot in that case will know that service exists. But if you call that service's method in another method that you try to run when the web app is running. Should it know the service exists without the annotation…
-2
votes
1 answer

How to add a text annotations to a time series ggplot

I know about annotate() and that you need to add the x and y coordinates. The problem is my x is class ""POSIXct" "POSIXt." So when I try to use annotate, R responds, object needs to be POSIXct. I have tried various combinations trying to fix this…
user8369515
  • 485
  • 1
  • 5
  • 16
-2
votes
1 answer

Annotate - Image document - C#

I have the following requirement Need to provide Annotate toolbar while viewing images documents ( TIFF, PDF...) to user User can update, erase text and add comment in image document and save the document. I am looking for a free SDK to do this…
user2218549
  • 155
  • 2
  • 2
  • 7
1 2 3
32
33