Found 33676 Articles for Programming

Golang Program to make a Simple Calculator using Switch Case

Akhil Sharma
Updated on 28-Oct-2022 07:58:28

5K+ Views

In this tutorial we will see how to make a simple calculator using switch case statements in Go programming language. The switch statement will assess an expression, comparing the expression's value against a series of case conditions given in a series and executes the statement after the first condition with a matching value, until a break is encountered. Golang Basic switch case with default A switch statement runs the first case equal to the choice entered. The cases are evaluated in an order and it stops when a case succeeds. If no case (choice entered) matches, it is a ... Read More

Golang Program to Create a Function without Argument and Without a Return Value

Akhil Sharma
Updated on 25-Oct-2022 11:41:08

2K+ Views

In this tutorial we will learn how to create a function without argument and without a return value in Go Programming Language. When a function has no arguments, it does not receive any data from the calling function. Similarly when it does not return any value, the calling function does not receive any data from the called function. So there is no data transfer between calling and called function. Add two Numbers Algorithm Step 1 − Import the package fmt package Step 2 − Start function main () Step 3 − Calling the function add () Step 4 − ... Read More

Golang Program to Find G.C.D Using Recursion

Akhil Sharma
Updated on 25-Oct-2022 11:34:00

1K+ Views

In this tutorial we will discuss how to write a Golang program to find the greatest common divisor GCD using recursion. The greatest common divisor (GCD) of two or more numbers is the greatest common factor number that divides them, exactly. It is also called the highest common factor (HCF). For example, the greatest common factor of 15 and 10 is 5, since both the numbers can be divided by 5. 15/5 = 3 10/5 = 2 Algorithm Step 1 − Import the package fmt Step 2 − Start function main() Step 3 − We will use an ... Read More

How to add multiple graphs to a Plotly Dash app on a single browser page in Python Plotly?

Vani Nalliappan
Updated on 21-Oct-2022 09:37:33

5K+ Views

Plotly is an open-source plotting library in Python that can generate several different types of charts. Python users can use Plotly to create interactive web-based visualizations that can be displayed in Jupyter notebooks, saved to standalone HTML files, or served as a part of web applications using Dash. Plotly can also be used in static document publishing and desktop editors such as PyCharm and Spyder. Dash is a Python framework and it is used to create interactive web-based dashboard applications. The dash library adds all the required libraries to web based dashboard applications. In this tutorial, we will show how ... Read More

Python Plotly – How to hide legend entries in a Plotly figure?

Vani Nalliappan
Updated on 21-Oct-2022 09:33:23

2K+ Views

Plotly is an open-source plotting library in Python that can generate several different types of charts. Python users can use Plotly to create interactive web-based visualizations including scientific charts, 3D graphs, statistical charts, financial charts, etc. Plotly can also be used in static document publishing and desktop editors such as PyCharm and Spyder. In this tutorial, we will show how you can use Plotly to hide legend entries for a particular field. Follow the steps given below to hide the legend entries. Step 1 Import the plotly.offline module and alias as py. import plotly.offline as py Step 2 Import ... Read More

How to shade a chart above a specific Y value in Python Plotly?

Vani Nalliappan
Updated on 21-Oct-2022 09:31:44

549 Views

Plotly is an open-source plotting library in Python that can generate several different types of charts. Python users can use Plotly to generate different types of charts including scientific charts, 3D graphs, statistical charts, financial charts, etc. In this tutorial, we will show how you can use Plotly to shade a chart above a specific Y value. Here, we will use the plotly.express module to create a plot. Then, we will use the add_vline() method to create a line with green color and set its width. To set the line color and opacity values, we will use the add_hrect() ... Read More

Python Plotly – How to change variable/label names for the legend in a line chart?

Vani Nalliappan
Updated on 21-Oct-2022 09:27:32

8K+ Views

Plotly is an open-source, interactive, and browser-based charting library for Python. Python users can use Plotly to generate different types of charts including scientific charts, 3D graphs, statistical charts, financial charts, etc. In this tutorial, we will show how you can use Plotly to change the variable and label names for the legend in a line chart. Here we will use the plotly.graph_objects module to generate figures. It contains a lot of methods to customize the charts and render them into HTML format. Follow the steps given below to generate variable or label names for the legend. Step 1 Import ... Read More

How to draw a multiple line chart using Plotly Express in Python Plotly?

Vani Nalliappan
Updated on 21-Oct-2022 09:26:11

4K+ Views

Plotly is an open-source plotting library in Python. Python users can use Plotly to generate different types of interactive web-based charts including scientific charts, 3D graphs, statistical charts, financial charts, etc. In this tutorial, we will show how you can use Plotly to generate multiple line charts. Here we will use plotly.express to generate figures. It contains a lot of methods to customize the charts and render them into HTML format. Follow the steps given below to generate a multiple line chart using Plotly Express. Step 1 Import the plotly.express module and alias as px. import plotly.express as px ... Read More

Python Plotly – How to manually set the color of points in a scatter plot?

Vani Nalliappan
Updated on 21-Oct-2022 09:21:53

6K+ Views

Plotly is an open-source plotting library in Python that can generate several different types of interactive web-based charts. Plotly can also be used in static document publishing and desktop editors such as PyCharm and Spyder. In this tutorial, we will see how to manually set the color of points in a scatter plot using Plotly. We will use the plotly.express module to generate scatter plots and then use the update_traces() method to set the desired color plot. Follow the steps given below to manually set the color of points in a Scatter plot. Step 1 Import the plotly.express module and ... Read More

How to plot multiple lines on the same Y-axis in Python Plotly?

Vani Nalliappan
Updated on 26-Aug-2023 03:20:56

35K+ Views

Plotly is an open-source plotting library in Python that can generate several different types interactive web-based visualizations that can be displayed in Jupyter notebooks, saved to standalone HTML files, or served as a part of web applications using Dash. Plotly can also be used in static document publishing and desktop editors such as PyCharm and Spyder. In this tutorial, we will show how you can use Plotly to plot multiple lines on the same Y-axis on a chart. Here we will use plotly.express to generate figures. It contains a lot of methods to customize chart and render a chart into ... Read More

Advertisements