Wie lässt sich eine 3D-Dichtefunktion am besten grafisch darstellen? Wie möchte ich mir vorstellen?
Nicht notwendig, aber R
Code dafür wäre toll.
data-visualization
ist Teil unseres Mandats.
Wie lässt sich eine 3D-Dichtefunktion am besten grafisch darstellen? Wie möchte ich mir vorstellen?
Nicht notwendig, aber R
Code dafür wäre toll.
data-visualization
ist Teil unseres Mandats.
Antworten:
R
Hier sind zwei zusätzliche Diagramme mit besseren Diagrammfunktionen als die zuvor angegebenen. Abhängig von Ihren Vorlieben bestimmen Sie also, wie Sie 3D-Datensätze visualisieren möchten.
Here is the `R` code used to generate these four mentioned plots.
library(fields)
library(scatterplot3d)
#Data for illistarition
x = seq(-10, 10, length= 100)
y = x
f = function(x, y) { r = sqrt(x^2+y^2); 10 * sin(r)/r }
z = outer(x, y, f)
z[is.na(z)] = 1
#Method 1
#Perspective Plot
persp(x,y,z,col="lightblue",main="Perspective Plot")
#Method 2
#Contour Plot
contour(x,y,z,main="Contour Plot")
filled.contour(x,y,z,color=terrain.colors,main="Contour Plot",)
#Method 3
#Heatmap
image(x,y,z,main="Heat Map")
image.plot(x,y,z,main="Heat Map")
#Method 4
#3-D Scatter Plot
X = expand.grid(x,y)
x = X[,1]
y = X[,2]
z = c(z)
scatterplot3d(x,y,z,color="lightblue",pch=21,main="3-D Scatter Plot")
image.plot()
Befehl eine Farbleiste hinzufügt. Außerdem filled.contour()
erzeugt ein ähnliches Grundstück mit einem Farbbalken standardmäßig hinzugefügt.
colorRampPalette()
, z. B. a = colorRampPalette(c('dark blue','blue','light blue','yellow','orange', 'red','dark red'))
eine Funktion zu erstellen , wenn Sie sie eingeben a
das erzeugt eine diskrete Approximation eines Farbkontinuums, das durch diese Farben verläuft. Das Argument bis a
ist eine Ganzzahl, die die Auflösung dieser diskreten Approximation bestimmt.