EMBRC Experimental facility overview
4:04
How to use RShiny
2:59
4 жыл бұрын
How to use Observation.org
3:00
4 жыл бұрын
How to create and use a KML file
3:24
How to use CSV editor
3:02
4 жыл бұрын
How to use data validation on Excel
2:33
How to obtain tidal data
2:50
4 жыл бұрын
Пікірлер
@benkhattabbenkhattab7617
@benkhattabbenkhattab7617 Ай бұрын
Can we have historical data from this website?
@UdayPramanik0
@UdayPramanik0 5 ай бұрын
I see this video in 2024 . But it is very helpful for me. Thanks...
@papiyabratati
@papiyabratati Жыл бұрын
how to download CSV file-in specific location?
@ahmedabdelkader31
@ahmedabdelkader31 Жыл бұрын
Why there is no description or summary about the conference in the description box
@MarTrain_eu
@MarTrain_eu Жыл бұрын
you can find more info and the programme here: conference.oceantraining.eu/
@doer6002
@doer6002 Жыл бұрын
how to download netcdf format files? please
@shakiulislam6883
@shakiulislam6883 Жыл бұрын
Thank you.
@muhammedshahamath546
@muhammedshahamath546 2 жыл бұрын
Thanks a Lot
@moritz1006
@moritz1006 3 жыл бұрын
Thank you very much! This was exactly what I was looking for.
@MultiSciGeek
@MultiSciGeek 3 жыл бұрын
Super intuitive program, but somehow not giving me the output I want. Glitchy.
@nawshinzubaida3141
@nawshinzubaida3141 3 жыл бұрын
Salinity ?
@vadius55
@vadius55 3 жыл бұрын
Спасибо за обзор
@vishwadeeprout3816
@vishwadeeprout3816 3 жыл бұрын
Thanks a lot. Just what I needed. It will be useful for my masters dissertation.
@monaallam130
@monaallam130 3 жыл бұрын
excellent
@simenyasikhulu
@simenyasikhulu 3 жыл бұрын
Wonderfully explained instructions.
@XinhLe
@XinhLe 4 жыл бұрын
great
@XinhLe
@XinhLe 4 жыл бұрын
it's great if more peole know about gebco and gebco data
@harryisdead
@harryisdead 4 жыл бұрын
So happy to find this video, great explanations, thanks for uploading
@MarTrain_eu
@MarTrain_eu 4 жыл бұрын
#Here I attach the code used for the example # Bulk change file names in a folder making use of R # Define documents location getwd() folder <- "/Users/marcelmontanyes/Desktop/IMBRSea/3rd Semester/Online Course/Data manipulation assignment/Mediterranean Sea" # Define function renameFunc <- function(z){ fnames <- dir(pattern= ".csv") lapply(fnames, function(current_name){ new_name <- paste0("Mediterranean Sea","_",current_name) file.rename(current_name, new_name) }) } #Apply function lapply(folder, renameFunc)