Carbon Dioxide PPM
How does carbon dioxide make soda so bubbly? By obeying the laws of fizz-ics.
@kaggle.programmerrdai_carbon_dioxide_ppm
How does carbon dioxide make soda so bubbly? By obeying the laws of fizz-ics.
@kaggle.programmerrdai_carbon_dioxide_ppm
Carbon dioxide is a chemical compound made up of molecules that each have one carbon atom covalently double bonded to two oxygen atoms. In the air it is transparent to visible light but absorbs infrared radiation, acting as a greenhouse gas. Wikipedia
Formula: CO2
Molar mass: 44.01 g/mol
Boiling point: -78.46 °C
Soluble in: Water
CREATE TABLE co2_annmean_gl (
"year" TIMESTAMP,
"mean" DOUBLE,
"uncertainty" DOUBLE
);CREATE TABLE co2_annmean_mlo (
"year" TIMESTAMP,
"mean" DOUBLE,
"uncertainty" DOUBLE
);CREATE TABLE co2_gr_gl (
"year" TIMESTAMP,
"annual_increase" DOUBLE,
"uncertainty" DOUBLE
);CREATE TABLE co2_gr_mlo (
"year" TIMESTAMP,
"annual_increase" DOUBLE,
"uncertainty" DOUBLE
);CREATE TABLE co2_mm_gl (
"date" TIMESTAMP,
"decimal_date" DOUBLE,
"average" DOUBLE,
"trend" DOUBLE
);CREATE TABLE co2_mm_mlo (
"date" TIMESTAMP,
"decimal_date" DOUBLE,
"average" DOUBLE,
"interpolated" DOUBLE,
"trend" DOUBLE,
"number_of_days" BIGINT
);Anyone who has the link will be able to view this.