A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/bokeh-plotting-figure-asterisk-function-in-python/ below:

bokeh.plotting.figure.asterisk() function in Python - GeeksforGeeks

bokeh.plotting.figure.asterisk() function in Python

Last Updated : 15 Jul, 2025

Bokeh

is a data visualization library in Python that provides high-performance interactive charts and plots and the output can be obtained in various mediums like notebook, html and server. The

Figure Class

create a new Figure for plotting. It is a subclass of Plot that simplifies plot creation with default axes, grids, tools, etc.

bokeh.plotting.figure.asterisk() Function

The

asterisk() function

in plotting module of bokeh library is used to Configure and add Asterisk glyphs to this Figure.

Syntax: asterisk(x, y, size=4, angle=0.0, *, angle_units='rad', fill_alpha=1.0, fill_color='gray', line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, tags=[], **kwargs) Parameters: This method accept the following parameters that are described below: Other Parameters: These parameters are **kwargs that are described below: Return: This method return the GlyphRenderer value.

Below examples illustrate the bokeh.plotting.figure.asterisk() function in bokeh.plotting:

Example 1: Python3
# Implementation of bokeh function
 
import numpy as np 
from bokeh.plotting import figure, output_file, show
 
plot = figure(plot_width = 300, plot_height = 300)
plot.asterisk(x =[1, 2, 3], y =[3, 2, 1], size = 30,
         color ="green", alpha = 0.6)
 
show(plot)
Output: Example 2: Python3
# Implementation of bokeh function
 
import numpy as np 
from bokeh.plotting import figure, output_file, show
 
N = 9
x = np.linspace(-2, 2, N)
y = x**2
sizes = np.linspace(20, 50, N)

plot = figure(plot_width = 300, plot_height = 300)
plot.asterisk(x = x, y = y, size = sizes,
         color ="green", alpha = 0.6, line_width = 3)
 
show(plot)
Output:

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4