Facebook
TwitterAttribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
License information was derived automatically
Files attached: Dataframe for biomass data with site information, aridity index and category, treatment detail, LRR Biomass, site richness, mean annual precipitation and interannual precipitation variability, graminoid proportion and soil estimated % N. Dataframe of plant functional groups biomass with the detail of sites, replicates, treatments. R-code file is also attached with the detailed scripts for statistical analysis in R software (version 4.4.1) using packages of "tidyverse" to facilitate coding and graphing, "DHARMa" for visualization of residuals, "glmmTMB" to fit a generalized linear mixed model and "ggeffects" to calculate and plot average marginal effects of predictors from the mixed-effects model.
Facebook
TwitterThis dataset is a clean CSV file with the most recent estimates of the population of the countries according to Wolrdometer. The data is taken from the following link: https://www.worldometers.info/world-population/population-by-country/
The data has been generated by websraping the aforementioned link on the 16th August 2021. Below is the code used to make CSV data in Python 3.8:
import requests
from bs4 import BeautifulSoup
import pandas as pd
url = "https://www.worldometers.info/world-population/population-by-country/"
r = requests.get(url)
soup = BeautifulSoup(r.content)
countries = soup.find_all("table")[0]
dataframe = pd.read_html(str(countries))[0]
dataframe.to_csv("countries_by_population_2021.csv", index=False)
The creation of this dataset would not be possible without a team of Worldometers, a data aggregation website.
Not seeing a result you expected?
Learn how you can add new datasets to our index.
Facebook
TwitterAttribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
License information was derived automatically
Files attached: Dataframe for biomass data with site information, aridity index and category, treatment detail, LRR Biomass, site richness, mean annual precipitation and interannual precipitation variability, graminoid proportion and soil estimated % N. Dataframe of plant functional groups biomass with the detail of sites, replicates, treatments. R-code file is also attached with the detailed scripts for statistical analysis in R software (version 4.4.1) using packages of "tidyverse" to facilitate coding and graphing, "DHARMa" for visualization of residuals, "glmmTMB" to fit a generalized linear mixed model and "ggeffects" to calculate and plot average marginal effects of predictors from the mixed-effects model.