Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
8Ginette8 authored Jan 9, 2025
1 parent d666242 commit e98ddf1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Let's plot the result now:

``` r
plot(countries,col = "#bcbddc")
plot(range_tiger,col = "#238b45",add = TRUE,axes = FALSE,legend = FALSE)
plot(range_tiger[[2]],col = "#238b45",add = TRUE,axes = FALSE,legend = FALSE)
```

![image](https://user-images.githubusercontent.com/43674773/203769654-0f5d7182-2b96-43bb-ac5c-306b777be268.png)
Expand Down Expand Up @@ -149,7 +149,7 @@ Here we adapted the extra-parameters to the extent of the study area, e.g., (i)
# Plot
plot(rst[[1]])
plot(shp_lonlat,add = TRUE)
plot(range_arcto,add = TRUE,col = "darkgreen",axes = FALSE,legend = FALSE)
plot(range_arcto[[2]],add = TRUE,col = "darkgreen",axes = FALSE,legend = FALSE)
points(obs_arcto[,c("decimalLongitude","decimalLatitude")],pch = 20,col = "#99340470",cex=1)
```

Expand Down Expand Up @@ -182,7 +182,7 @@ The three results are pretty similar because most of the observations are near t

``` r
plot(countries,col="#bcbddc")
plot(range_dd3,col = "#238b45",add = TRUE,axes = FALSE,legend = FALSE)
plot(range_dd3[[2]],col = "#238b45",add = TRUE,axes = FALSE,legend = FALSE)
points(obs_dd[,c("decimalLongitude","decimalLatitude")],pch = 20,col = "#99340470",cex = 1)
```

Expand Down

0 comments on commit e98ddf1

Please sign in to comment.