Skip to content

Latest commit

 

History

History
48 lines (38 loc) · 660 Bytes

Example.md

File metadata and controls

48 lines (38 loc) · 660 Bytes
kernelspec
display_name language name
Python 3
python
python3

Heading

Example

import pandas as pd

df = pd.DataFrame(
    {
        "a": [0, 1, 2, 3, 4, 6, 7],
        "b": ["a", "b", "c", "d", "e", "f", "g", "h", "i"],
        "c": ["a", "b", "c", "d", "e", "f", "g", "h", "i"],
    }
)
library(dplyr)
data <- data(AirPassengers)
data %>% ggplot2::ggplot(
  data,
  aes(x = n, y = t)
)
int main(){
    int x = 0;
}
using DataFrame
DataFrame(
    "product identifier" => [15, 20, 25],
    "product name" => ["Apple", "Pear", "Peach"]
)