Displaying 1 result from an estimated 1 matches for "b23k".
Did you mean:
b23
2023 Jan 09
0
Interactive 3D Plot with non-numeric axis tick labels
...frame like this:
#: number
TLD: Countrycode
Date: date
String: a label
Because plot3d can only deal with numbers I converted Date to Year and
TLD as well as String to a numeric value like this:
numTLD <- as.numeric(factor(df$TLD))
# TLD Date String Year numTLD numString
1 DE 1988-11-07 B23K 1988 3 74
2 DE 1984-09-06 B23K 1984 3 74
3 DE 1996-03-21 B23K 1996 3 74
4 DE 1996-03-21 B23K 1996 3 74
5 DE 1996-03-21 B23K 1996 3 74
6 DE 1996-03-21 B23K 1996 3 74
7 DE 1996-03-21 B23K 1996 3 74
8 DE 1996-03-21 B23K 1996 3 74
9 DE 1996-03-21 B23K 1996 3 74
To create an interactive 3D plot I use:...