Indonesian Food Recipes
14000 recipes of chicken, lamb, beef, egg, tofu, tempe, and fish
@kaggle.canggih_indonesian_food_recipes
14000 recipes of chicken, lamb, beef, egg, tofu, tempe, and fish
@kaggle.canggih_indonesian_food_recipes
Indonesian foods are well-known for their rich taste. There are many spices used even for daily foods. This dataset may give insight on how to prepare Indonesian food, in many ways.
This dataset contains 14000 recipes divided in 7 categories:
dataset-ayam.csv (chicken recipes)dataset-kambing.csv (lamb recipes)dataset-sapi.csv (beef recipes)dataset-telur.csv (egg recipes)dataset-tahu.csv (tofu recipes)dataset-ikan.csv (fish recipes)dataset-tempe.csv (tempe recipes)For each category, there are 5 columns:
All the data were taken from Cookpad on 23 Feb 2018.
Dare to find out what is the unique recipe? The most strange? Or the common way to cook particular ingredients.
Can you create your own recipe based on this dataset?
CREATE TABLE dataset_ayam (
"title" VARCHAR,
"ingredients" VARCHAR,
"steps" VARCHAR,
"loves" BIGINT,
"url" VARCHAR
);CREATE TABLE dataset_ikan (
"title" VARCHAR,
"ingredients" VARCHAR,
"steps" VARCHAR,
"loves" BIGINT,
"url" VARCHAR
);CREATE TABLE dataset_kambing (
"title" VARCHAR,
"ingredients" VARCHAR,
"steps" VARCHAR,
"loves" BIGINT,
"url" VARCHAR
);CREATE TABLE dataset_sapi (
"title" VARCHAR,
"ingredients" VARCHAR,
"steps" VARCHAR,
"loves" BIGINT,
"url" VARCHAR
);CREATE TABLE dataset_tahu (
"title" VARCHAR,
"ingredients" VARCHAR,
"steps" VARCHAR,
"loves" BIGINT,
"url" VARCHAR
);CREATE TABLE dataset_telur (
"title" VARCHAR,
"ingredients" VARCHAR,
"steps" VARCHAR,
"loves" BIGINT,
"url" VARCHAR
);CREATE TABLE dataset_tempe (
"title" VARCHAR,
"ingredients" VARCHAR,
"steps" VARCHAR,
"loves" BIGINT,
"url" VARCHAR
);CREATE TABLE dataset_udang (
"title" VARCHAR,
"ingredients" VARCHAR,
"steps" VARCHAR,
"loves" BIGINT,
"url" VARCHAR
);Anyone who has the link will be able to view this.