My first post

Idea
R
See if the website works properly
Author

Stewart Li

Published

July 12, 2023

News

Hello world! This is my first post here.

R/Python

Code
df_r <- head(mtcars[1:4])
summary(df_r)
      mpg             cyl         disp             hp       
 Min.   :18.10   Min.   :4   Min.   :108.0   Min.   : 93.0  
 1st Qu.:19.27   1st Qu.:6   1st Qu.:160.0   1st Qu.:106.2  
 Median :21.00   Median :6   Median :192.5   Median :110.0  
 Mean   :20.50   Mean   :6   Mean   :211.8   Mean   :117.2  
 3rd Qu.:21.30   3rd Qu.:6   3rd Qu.:249.8   3rd Qu.:110.0  
 Max.   :22.80   Max.   :8   Max.   :360.0   Max.   :175.0  
Code
import pandas as pd
df_py = r.df_r
df_py.describe()
             mpg       cyl        disp          hp
count   6.000000  6.000000    6.000000    6.000000
mean   20.500000  6.000000  211.833333  117.166667
std     1.766352  1.264911   89.903096   29.088944
min    18.100000  4.000000  108.000000   93.000000
25%    19.275000  6.000000  160.000000  106.250000
50%    21.000000  6.000000  192.500000  110.000000
75%    21.300000  6.000000  249.750000  110.000000
max    22.800000  8.000000  360.000000  175.000000