Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
96 views

I am currently working on a little project (like the game Bongo Cat) and I ran into a problem with how the transparent image (a PictureBox) renders with the transparent part. (Also the same with the ...
Tamino1230's user avatar
Advice
0 votes
0 replies
38 views

I would like to generate H3 grid with labels into its hexagons, following the index order and drawing its curve. ____ Note. This illustration is from another grid system, but I would like similar ...
Peter Krauss's user avatar
  • 14.1k
-1 votes
1 answer
139 views

I have some signals that are generated through logic within my indicator. They are plotted as “dots, triangles, or arrows” or other shapes. What I wanted was a way to “monitor” the indicator signals. ...
Stonks's user avatar
  • 11
2 votes
0 answers
73 views

I'm running Neo4j 5.18.1 enterprise edition with a cluster of 6 servers. I'm running 2 queries on all servers in the cluster, trying to find a specific node. The node in question has the following ...
Naveh Ohana's user avatar
0 votes
0 answers
40 views

In R Bookdown, I would like to refer to a definition: <!-- body or .Rmd file --> The first definition is Definition \@ref(newterm) below: ::: {.definition #newterm name="new def 1"} ...
NM_'s user avatar
  • 2,039
0 votes
1 answer
39 views

How can I use variable labels in summary.matchit? For example: mydf <- MatchIt::lalonde mydf %<>% labelled::set_variable_labels( age = "MyAge", educ = "MyEduc", ...
robertspierre's user avatar
1 vote
2 answers
102 views

Consider this code: options(parameters_labels = TRUE) mydf <- pscl::bioChemists labelled::var_label(mydf) <- list(art="MyCount", fem="MyGender", ...
robertspierre's user avatar
0 votes
0 answers
26 views

I can manually see the number of conversations in each label in the settings screen. I want to pull this data monthly and automatically add the count in a Gsheet so I can see the trend over time. Can ...
Michelle Goodman's user avatar
0 votes
2 answers
203 views

I have ContentView with code like this: public static readonly BindableProperty LetsTryProperty = BindableProperty.Create(nameof(LetsTry), typeof(List<List<string>>), typeof(TestClass)); ...
holycreeper's user avatar
-1 votes
1 answer
68 views

I need a textarea field containing label inside the textarea field. The input text will start from the end of the label. If the label is so long, it will go to the second line. According to device ...
MIH10's user avatar
  • 29
2 votes
1 answer
126 views

I have an example Python program that sets the text of a tkinter label, and the use of Label.config(text=string) is leaking memory. Other techniques for setting the text don't. Is something wrong here?...
KeithS's user avatar
  • 143
0 votes
2 answers
75 views

I need help with this code, My purpose is to show multiple Message one after one, this one is working fine but I need several messages to be shown one after one, I tryied different Method but allways ...
Agili Dt's user avatar
-2 votes
1 answer
80 views

I use pug template with Node.JS. How can I use a label to hide file input control and use the label click to upload file? I have done the same thing using bootstrap but not sure about about to ...
khteh's user avatar
  • 4,280
2 votes
1 answer
87 views

I am using facet_wrap and need to move the x axis table left and the y2 axis lable up to make room for my legend and was wondering if the is possible. Below is my code and an image of what I am trying ...
Savy's user avatar
  • 45
4 votes
2 answers
143 views

The whole goal of this program is to take input from the user : prefix, first name, middle name, and last name and when the button is clicked, combine all of the values. EXAMPLE Mr. John Jack Smith. ...
jacob 6823's user avatar
3 votes
2 answers
100 views

I have a horizontal geom_col bar with position = "fill". I want to label the bar with the same color as the fill aesthetic, but doing so caused the text colors to overlap with the fill. ...
benson23's user avatar
  • 19.6k
-3 votes
1 answer
59 views

<label for="indoor"><input id="indoor" type="radio" name="indoor-outdoor"> Indoor</label> <label If you omit the value attribute, the ...
Halifax Lane's user avatar
0 votes
0 answers
35 views

I need some help with Docker labels. I am using Docker via Portainer and have the following stack: services: myapp: image: lscr.io/linuxserver/myapp:latest container_name: myapp ...
Peter Smith's user avatar
0 votes
0 answers
54 views

I am new to python and with the help of Chatgpt I have created the code below. import pandas as pd import matplotlib.pyplot as plt import numpy as np # Load your data df_diff = pd.read_csv("...
Joshua Dunn's user avatar
2 votes
0 answers
88 views

I have a Grid which contains a label. This label can be of variable font size, so that means the number of lines that it can display varies based on its font size. The larger the font, the fewer lines ...
Victor Chelaru's user avatar
0 votes
1 answer
69 views

I'm using ggplot2 in R to create a dotplot where the x-axis is the variable name and the y-axis is the cell line ID. The plot is faceted by a Group variable ("Foci formation", "Soft ...
nicholaspooran's user avatar
0 votes
1 answer
69 views

I'm working on a plot showing the length distribution of some events in the human genome. I'm pretty OK with the end result but wish to add a geom_label for the highest count reporting the ...
Matteo's user avatar
  • 403
0 votes
1 answer
40 views

I'm a Python beginner, and I was trying to build a Youtube Downloader. I just needed a GUI for easy usage. So I decided on Kivy. In the GUI I have this label named self.labelOutput. It is placed under ...
Marcelcolt's user avatar
0 votes
0 answers
89 views

I am trying to create on a dummy dataset using the following code to create the variables: example_variable <- labelled(sample(c(1, 5, 8), N, replace = T), labels = c(&...
Shems Vouwzee's user avatar
0 votes
0 answers
9 views

I have a dimplejs plot showing months (1 to 12) on a time axis. (more details in this post) var x = myLinePlot.addTimeAxis("x", "month"); myLinePlot.draw(); x.shapes.selectAll(&...
OuzoPower's user avatar
  • 278
0 votes
0 answers
32 views

"How to hide labels and probability in YOLOv8 while saving predictions?" from ultralytics import YOLO from pathlib import Path model = YOLO("yolov8m-seg.pt") results = model....
екатерина ефремова's user avatar
0 votes
1 answer
370 views

Is there a code viewer such as Labelary for ZPL made for DATAMAX DPL? have a label that need to validate have a code but it is not a ZPL format.
Emmanuel Munoz's user avatar
1 vote
1 answer
74 views

I'm trying to organize text alignment in ttk.Label using style in order to reduce the amount of code: import tkinter as tk from tkinter import ttk from tkinter import font app = tk.Tk() width = 605 ...
KLYSTRON's user avatar
0 votes
0 answers
43 views

I have a model that loads city names from a file and uses them to label the turtles. Some of these names are longer than others, so when I use a secondary turtle to hold the label, the label is not ...
notdaluvicorco's user avatar
0 votes
1 answer
178 views

I am trying to reduce the line spacing for a text label that is inside a gallery. I don't want the label to show a scroll bar to navigate through each line of text, originally I have this: Instead ...
AlSub's user avatar
  • 1,055
3 votes
3 answers
309 views

I am looking to create a graph with ggplot2, containing: A title; A subtitle; A sub-subtitle I tried using the code below, which is placing the sub-subtitle on a position which has a distance from ...
GiacomoDB's user avatar
  • 491
0 votes
0 answers
13 views

Trying to populate a label control on an Access report with a phone number that has the '+' sign at the beginning. When doing the below the plus sign does not appear. If rs("Dom/Intl") = &...
rcpikeboy's user avatar
0 votes
0 answers
141 views

I frequently need to make long, customized changes to labels or variable names in a variety of settings. dplyr::case_match() is great for this, with a lot of customization options. For example: ...
Jaken's user avatar
  • 601
0 votes
0 answers
53 views

I have built virtual raster files from a set of Landsat raster data with multiple bands. I succeeded quite easily with the display of the images but have been stumped about labeling those same ...
Carl Huxohl's user avatar
1 vote
1 answer
46 views

A simple gnuplot to generate labels as function of a particular column is here; also, is a function that can input a value and return a string: set datafile separator "," set datafile ...
asylumax's user avatar
  • 830
2 votes
1 answer
63 views

When using a labeller function in ggplot2, is it possible to apply it only when the original value is found in the lookup table? In the example below, I'm using as_labeller() to rename some of the car ...
Jaken's user avatar
  • 601
2 votes
0 answers
64 views

I have an application that creates a lot of pie charts. The labels on the pie chart slices can have a text size of 6 or 8 characters up to sometimes 30 or so. The size of the text in the label affects ...
Dave Day's user avatar
0 votes
0 answers
49 views

am developing a VBA UserForm where the user can select formatting options for a text. The text is displayed in a Label called lblFontPreview within the form. I want to apply a specific style, called &...
Celso R's user avatar
0 votes
1 answer
35 views

Having a dimple.js line plot to compare time series for several years, my plot uses a TimeAxis on x, with one tick per month. var x = myLinePlot.addTimeAxis("x", "month_day"); I ...
OuzoPower's user avatar
  • 278
0 votes
1 answer
44 views

I have a large dataframe that I need to make and annotate subplots from, see below. Everything seems ok, I still have some work to do on the x and y ticks but otherwise it seems pretty right, except, ...
Greg Gollaher's user avatar
1 vote
0 answers
101 views

I am trying to change the text of a Richtextlabel from a different script using a setter and adding to that variable but when I do it, the function is called but the label doesn't update. The setter ...
Zoom8195's user avatar
2 votes
3 answers
107 views

I have a long text in a Label that is in a ScrollView, and I would like to scroll a specific word to make it visible. Is there a way to do this please? Thanks
Charstar's user avatar
  • 136
0 votes
0 answers
64 views

I am trying to extract ticks from my python plot drawn with seaborn. I have two sets of code below which I thought would produce same results. However, one extracts the ticks correctly and the other ...
user3840530's user avatar
1 vote
1 answer
60 views

Using bar charts in Scilab is there any straight way or workaround to show the data labels next to the bars? Scilab chart: example chart with data labels I would like to achieve in Scilab charts. I ...
JFS's user avatar
  • 3,142
0 votes
1 answer
32 views

I am creating programs which produce worksheets for students. In this particular program student must sketch a polynomial given in factored form on a blank grid. Excel generates random roots on a ...
Mark Barry's user avatar
0 votes
0 answers
62 views

I want to create a map with all the countries labelled, but the text within each country's boundaries. For readability, I want the text to follow the curve of the country boundary. I tried an example ...
Nike's user avatar
  • 35
0 votes
0 answers
31 views

I'm a rookie programmer looking to develop a sort of "surface generator" for funzies. I have a problem though, when generating all of the tiles present in the script, instead of it using the ...
Tacwedie's user avatar
2 votes
2 answers
62 views

I have the following code which generates a 3D plot. I am trying to label the plot lines, but they are not ending up where I expect them. import matplotlib.pyplot as plt from mpl_toolkits.mplot3d ...
Ma Poub's user avatar
  • 11
0 votes
1 answer
49 views

I have two data sets. Data set A has two columns as below. [Data set A] obs col1 col2 1 dem_it1 Age 2 dem_it2 Gender 3 dem_it3 Race Data set B has those values of column1 in Data set A as columns as ...
brainupgraded's user avatar
0 votes
1 answer
37 views

When I create a new variable using variables that have labels, the new variable seems to inherit the label of one of the variables I am supplying. Is this a bug or how can I prevent this? I can ...
user63230's user avatar
  • 4,901

1
2 3 4 5
228