Skip to content

Instantly share code, notes, and snippets.

View Tech-49's full-sized avatar
🎯
Focusing

Hardik Raval Tech-49

🎯
Focusing
View GitHub Profile
@Tech-49
Tech-49 / Python_helper.txt
Last active January 20, 2023 10:10
Python useful functions
-------------------
Pandas
-------------------
# Create dataframe from dictionary
df = pd.DataFrame.from_dict(data["trainData"])
# Convert entire dataframe values to numeric type.
df = df.apply(pd.to_numeric, errors='ignore')
@Tech-49
Tech-49 / docker-compose.yml
Last active December 24, 2019 10:21
docker-compose.yml File
version: '3'
services:
# The Application
php:
build: .
image: php:7.2-apache
working_dir: /var/www/html
volumes:
- ./:/var/www/html