Hewan Demissie Degu
2025-09-25
Welcome to the Ethiopian Kale Altitude Explorer โ a Shiny app designed to visualize and filter kale accessions based on altitude.
## Accession Latitude Longitude Altitude Woreda Zone
## 1 Bc001 06ห08'00"-N 37ห35'00"-E 1930 Sodo Gurage
## 2 Bc002 08ห20'00"-N 37ห36'00"-E 2000 Abeshge Gurage
## 3 Bc003 08ห63'10"-N 38ห10'14"-E 2243 Esha Gurage
## 4 Bc004 06ห09'00"-N 37ห35'00"-E 2200 Cheha Gurage
## 5 Bc005 08ห10'00"-N 37ห18'00"-E 2150 Sodo Gurage
## 6 Bc006 08ห22'47"-N 37ห38'21"-E 1470 Abeshge Gurage
## Loading required package: ggplot2
##
## Attaching package: 'plotly'
## The following object is masked from 'package:ggplot2':
##
## last_plot
## The following object is masked from 'package:stats':
##
## filter
## The following object is masked from 'package:graphics':
##
## layout
plot_ly(
data = accessions,
x = ~Accession,
y = ~Altitude,
type = 'scatter',
mode = 'markers+lines',
marker = list(size = 10, color = ~Altitude, colorscale = 'Viridis'),
line = list(color = 'gray')
) %>%
layout(
title = "Altitude Variation Across Ethiopian Kale Accessions",
xaxis = list(title = "Accession ID"),
yaxis = list(title = "Altitude (m)")
)โข Supports breeding and ecological research โข Helps identify altitude-adapted accessions โข Future improvements: โข Add trait overlays โข Integrate climate zone filters โข Export filtered results