208 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
1
answer
79
views
Adjusting secondary y-values
I'm having trouble fixing my secondary y-values. I have a context plot showing my inputs and a results plot showing the outputs. But no matter what I do, the values on my secondary y-axis don't align ...
1
vote
3
answers
101
views
Adding labels to multiple data points based on a condition [R] [duplicate]
I'm trying to get a plot that shows some important data points highlighted.
Dataset:
df <- structure(list(its = 1:20, pd = c(-0.521, -1.866, -0.11, 0.296,
-0.14, -0.303, 0.141, 0.181, -0.116, 0....
1
vote
2
answers
77
views
Unicode character limitations in vcd::mosaic using vcd::labeling_cells (\u25b3 vs \u25b6 using \n)
I want to use triangles as part of my cell labels (for use in a legend) on different lines, all structured using \n. The up-pointing triangle (\u25b2) works fine in the mosaic plot, but the right-...
0
votes
1
answer
199
views
Label Studio not presenting the labels and OCR text
I’m new using label studio and I’m assigned to make a project for extracting data from invoices with different layouts using LayoutLM.
Since the invoices have thousands of words and need to label in ...
0
votes
0
answers
34
views
Matplotlip axis labeling with vernal equinox
I need to label the vernal equinox on a Matplotlib 3D plot.
ax.set_xlabel("x (AE)")
ax.set_ylabel("y (AE)\n♈")
ax.set_zlabel("z (AE)")
As you can see in my two ...
0
votes
1
answer
620
views
QGIS: Rule-Based Labeling to Show Only One Label per Group of Nearby Points
I am working on a hedge planting project and want only one label to represent each group of similar plants within a certain radius or a set number of nearby points (e.g., 7 points).
I tried using ...
0
votes
0
answers
153
views
Cannot resolve "missing" Djanjo when trying to run label-studio
I want to use the popular package label-studio to build training data using images that I'll apply the AI labelling steps on.
The problem is that after cloning the repo from github and following all ...
0
votes
0
answers
356
views
Add label sensitivity to the e-mail in Outlook while sending the mails using Python
I’m trying to send multiple emails using Python script and I want to add label to the e-mail defined as "Confidential".
def send_email(reciepient, email, sender, subject, body, att):
mail = ...
2
votes
0
answers
54
views
How to construct a harmonious labeling function?
I'm building code for harmonious labeling on Hanoi H_2 graph.
When I run the code there there is a repetition of edge labels and vertex labels used are not from 0 to 11 even though the requirement of ...
2
votes
1
answer
73
views
cartesian coordinates to label
Using coordinates for labelling? I was asked it was possible and to see for myself, I am trying to program it and read up more on it. I do not know what it is called or where to look but the general ...
0
votes
1
answer
249
views
"QGIS: Displaying labels outside polygons for line features inside using field values"
How can I display labels for line features in a QGIS line layer, where the label should appear outside a polygon if the line feature is inside the polygon, and otherwise appear as it is? I have ...
0
votes
2
answers
141
views
Three-valued-image connected components
Algorithms that label connected components on binary images (background/foreground) are widely available (say, in OpenCV) and discussed at length in the literature. I would however want to label ...
0
votes
1
answer
81
views
Setting string labels to bar lines in bar graph ggplot
I'm trying to make a proportion bar plot in R. I'm almost done, except for one (extremely pesky) detail. The data I use was imported from a .dta file, and R seems slightly confused as to whether the ...
2
votes
2
answers
84
views
Label a list following the unique elements appearing in it
Given a list of strings such as:
foo = \['A', 'A', 'B', 'A', 'B', 'C', 'C', 'A', 'B', 'C', 'A'\]
How can we label them such that the output would be:
output = \['A1', 'A2', 'B1', 'A3', 'B2', 'C1', '...
1
vote
1
answer
214
views
How do I adjust the position of geom_text over geom_bar columns in ggplot?
I am attempting to make a bar graph in ggplot2 but when I add labels, they cluster over one middle bar rather than sitting on the bar the value itself represents.
The code I am using:
synch<-data....