How to resolve the algorithm Plot coordinate pairs step by step in the jq programming language
Published on 12 May 2024 09:40 PM
How to resolve the algorithm Plot coordinate pairs step by step in the jq programming language
Table of Contents
Problem Statement
Plot a function represented as x, y numerical arrays. Post the resulting image for the following input arrays (taken from Python's Example section on Time a function): This task is intended as a subtask for Measure relative performance of sorting algorithms implementations.
Let's start with the solution:
Step by Step solution about How to resolve the algorithm Plot coordinate pairs step by step in the jq programming language
Source code in the jq programming language
jq -n -M -r -f plot.jq | R CMD BATCH plot.R
# NOTE: This definition of transpose can be omitted
# if your version of jq includes transpose as a builtin.
#
# transpose a possibly jagged matrix, quickly;
# rows are padded with nulls so the result is always rectangular.
def transpose:
if . == [] then []
else . as $in
| (map(length) | max) as $max
| length as $length
| reduce range(0; $max) as $j
([]; . + [reduce range(0;$length) as $i ([]; . + [ $in[$i][$j] ] )] )
end;
def x: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
def y: [2.7, 2.8, 31.4, 38.1, 58.0, 76.2, 100.5, 130.0, 149.3, 180.0];
def plot(x;y): "A,B", ( [x,y] | transpose | map( @csv ) | .[]);
plot(x;y)
mydata <- read.table( file("stdin"), header=TRUE, sep=",")
x = mydata$A # x-axis
y = mydata$B # y-axis
plot(x, y, # plot the variables
main="Scatterplot Example",
xlab="x-axis label", # x-axis label
ylab="y-axis label" ) # y-axis label
You may also check:How to resolve the algorithm Dynamic variable names step by step in the Raku programming language
You may also check:How to resolve the algorithm Substring step by step in the Lua programming language
You may also check:How to resolve the algorithm Handle a signal step by step in the COBOL programming language
You may also check:How to resolve the algorithm Chowla numbers step by step in the zkl programming language
You may also check:How to resolve the algorithm Combinations step by step in the MATLAB programming language