Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update content v.scatterplot to the new name #991

Merged
merged 1 commit into from
Dec 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/vector/v.scatterplot/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MODULE_TOPDIR = ../..

PGM = d.vect.scatter
PGM = v.scatterplot

include $(MODULE_TOPDIR)/include/Make/Script.make

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h2>DESCRIPTION</h2>

<p>
<em>d.vect.scatter</em> draws a scatterplot of the value in one
<em>v.scatterplot</em> draws a scatterplot of the value in one
column against the values in another column. Optionally, a linear or
polynomial trendline with user-defined degrees can be drawn on top.

Expand Down Expand Up @@ -68,7 +68,7 @@ <h3>Example 1</h3>
</div>

<p>
<img src="d_vect_scatter_01.png"><br> <em>Figure 1. Scatterplot of
<img src="v_scatterplot_01.png"><br> <em>Figure 1. Scatterplot of
elevation against temperature in 1000 randomly selected locations</em>

Draw a density scatter of the elevation values against the slope
Expand All @@ -82,7 +82,7 @@ <h3>Example 1</h3>
</div>

<p>
<img src="d_vect_scatter_02.png"><br> <em>Figure 1. Density
<img src="v_scatterplot_02.png"><br> <em>Figure 1. Density
scatterplot of elevation against temperature in 1000 randomly selected
locations. Dashed red line is the trendline.</em>

Expand Down
Loading