3D Line Chart (line3d_chart)
A versatile tool to create a 3D line chart with customizable labels and values. Visualize data in a clear and interactive way.
Simple 3D Line Chart
Purpose
The Simple 3D Line Chart function in the web app allows users to input three sets of data points (x, y, and z values) to create a 3D line chart visualization. This helps users to visually analyze the relationship between three variables.
Use Cases
- Visualizing the relationship between three variables in a 3D space.
- Identifying trends or patterns in the data points.
How to Use
- Enter the x, y, and z values in the respective input fields.
- Click on the "Generate Chart" button to create the 3D line chart visualization.
Input Values
- X Values: Enter the x-axis values separated by commas.
- Y Values: Enter the y-axis values separated by commas.
- Z Values: Enter the z-axis values separated by commas.
Default unit is inch.
Output Values
- Chart: The 3D line chart visualization showing the relationship between the three variables.
Any other Instruction
- Ensure the input values are correctly entered and separated by commas.
- Analyze the chart to understand the relationship between the variables.
Code Analysis
- The function takes x, y, and z values as input.
- Converts the input values to floating-point numbers.
- Creates a 3D line chart using the input values.
- Returns the chart as output.
Technical Parameters
x_values, y_values, z_values, x_label, y_label, z_label, title
Return Values
chart
Example Expressions
You can use the following expressions to directly evaluate in a non-interactive manner using eva():
line3d_chart(x_values='1, 2, 3, 4, 5', y_values='10, 20, 30, 40, 50', z_values='5, 4, 3, 2, 1')
line3d_chart(x_values='0.1, 0.2, 0.3, 0.4, 0.5', y_values='100, 200, 300, 400, 500', z_values='50, 40, 30, 20, 10')
Click on Help icon to open the help page on a separate window.