The theory   Multinomial logistic regression is a statistical technique used for predicting the outcome of a categorical dependent variable based on one or more independent variables. It is similar to binary logistic regression, but is used when the dependent variable has more than two categories. The theoretical foundation of multinomial logistic regression is based on the idea of using probability to predict the outcome of a categorical dependent variable. The algorithm estimates the probability that an observation belongs to each category of the dependent variable, and then assigns the observation to the category with the highest probability. To do this, the algorithm uses a logistic function to model the relationship between the dependent variable and the independent variables. The logistic function is used to transform the output of the model into probabilities, which can then be used to make predictions about the dependent variable. The coefficients of the model are estimated using maximum likelihood estimation, which is a method for estimating the parameters of a statistical model based on the observed data. The goal of maximum likelihood estimation is to find the values of the coefficients that maximize the likelihood of the observed data, given the model. Once the model has been trained, it can be used to make predictions about the dependent variable by inputting new values for the independent variables and estimating the probability that the observation belongs to each category of the dependent variable. The observation is then assigned to the category with the highest probability. Overall, multinomial logistic regression is a powerful and widely-used tool for predicting categorical outcomes in a wide range of applications.   The code   To build a multinomial logistic regression model in python, we can use the LogisticRegression class from the sklearn library. Here is an example of how to build a multinomial logistic regression model in python: # import the necessary libraries from sklearn.linear_model import LogisticRegression from sklearn.model_selection import train_test_split # load the data X = # independent variables y = # dependent variable # split the data into training and test sets X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42) # create the model model = LogisticRegression(multi_class=’multinomial’, solver=’newton-cg’) # fit the model on the training data model.fit(X_train, y_train) # make predictions on the test data predictions = model.predict(X_test) # evaluate the model performance accuracy = model.score(X_test, y_test) print(f’Test accuracy: {accuracy:.2f}’) To build a multinomial logistic regression model in R, we can use the multinom function from the nnet library. Here is an example of how to build a multinomial logistic regression model in R: # install and load the necessary libraries install.packages(“nnet”) library(nnet) # load the data data = # data frame with independent and dependent variables # split the data into training and test sets train_index = sample(1:nrow(data), 0.8*nrow(data)) train = data[train_index, ] test = data[-train_index, ] # create the model model = multinom(dependent_variable ~ ., data=train) # make predictions on the test data predictions = predict(model, test) # evaluate the model performance accuracy = mean(test$dependent_variable == predictions) print(paste(“Test accuracy:”, accuracy)) To pay attention!   It is important to note that multinomial logistic regression assumes that the independent variables are independent of each other, and that the log odds of the dependent variable are a linear combination of the independent variables. Multicollinearity is a common problem that can arise when working with logistic regression. It occurs when two or more independent variables are highly correlated with each other, which can lead to unstable and unreliable results. What is multicollinearity? Multicollinearity occurs when two or more independent variables are highly correlated with each other. This can be a problem because it can lead to unstable and unreliable results. Imagine that you are using logistic regression to predict whether a customer will make a purchase based on their income and education level. If income and education level are highly correlated (e.g., people with higher education levels tend to have higher incomes), then it may be difficult to accurately determine the unique contribution of each variable to the prediction. This is because the two variables are highly dependent on each other, and it may be difficult to disentangle their individual effects. How does multicollinearity affect logistic regression? Multicollinearity can have several negative impacts on logistic regression: – It can make it difficult to interpret the results of the model. If two or more independent variables are highly correlated, it may be difficult to determine the unique contribution of each variable to the prediction. This can make it difficult to interpret the results of the model and draw meaningful conclusions. – It can lead to unstable and unreliable results. Multicollinearity can cause the coefficients of the model to change significantly when different subsets of the data are used. This can make the results of the model difficult to replicate and may lead to incorrect conclusions. – It can increase the variance of the model. Multicollinearity can cause the variance of the model to increase, which can lead to overfitting and poor generalization to new data. What can you do to address multicollinearity? There are several steps you can take to address multicollinearity in logistic regression: – Identify correlated variables. The first step is to identify which variables are highly correlated with each other. You can use statistical methods, such as variance inflation factor (VIF), to identify correlated variables. – Remove one of the correlated variables. If two variables are highly correlated with each other, you can remove one of them from the model to reduce multicollinearity. – Combine correlated variables. Alternatively, you can combine correlated variables into a single composite variable. This can help reduce multicollinearity and improve the stability and reliability of the model. – Use penalized regression methods. Penalized regression methods, such as ridge or lasso regression, can help reduce multicollinearity by adding a penalty term to the model that encourages the coefficients of correlated variables to be close to zero.   Multicollinearity is a common problem that can arise when working with logistic regression. It can

MLOps (short for Machine Learning Operations) is a set of practices and tools that enable organizations to effectively manage the development, deployment, and maintenance of machine learning models. It involves collaboration between data scientists and operations teams to ensure that machine learning models are deployed and managed in a reliable, efficient, and scalable manner. Here are some steps you can take to plan for operations in an MLOps organization: Define your goals and objectives: Clearly define what you want to achieve with your machine learning models, and how they will fit into your overall business strategy. This will help you prioritize and focus your efforts. Establish a clear development process: Set up a clear and structured development process that includes stages such as model development, testing, and deployment. This will help ensure that models are developed in a consistent and reliable manner. Implement a robust infrastructure: Invest in a robust infrastructure that can support the deployment and management of machine learning models. This may include hardware, software, and data storage and processing systems. Build a strong team: Assemble a team of skilled professionals who can work together effectively to develop and deploy machine learning models. This may include data scientists, software engineers, and operations specialists. Define your workflow: Establish a workflow that defines how machine learning models will be developed, tested, and deployed. This should include clear roles and responsibilities for each team member, as well as processes for version control, testing, and deployment. Implement monitoring and evaluation: Set up systems to monitor the performance of your machine learning models in production, and establish processes for evaluating their performance and making improvements as needed. By following these steps, you can effectively plan for operations in an MLOps organization and ensure that your machine learning models are developed and deployed in a reliable, scalable, and efficient manner.   (Note: I participate in the affiliate amazon program. This post may contain affiliate links from Amazon or other publishers I trust (at no extra cost to you). I may receive a small commission when you buy using my links, this helps to keep the blog alive! See disclosure for details.)   Here are some top materials related to operations in MLOps: “The 4 Pillars of MLOps: How to Deploy ML Models to Production” by phData The “Practitioners Guide to MLOps” by mlops.community “Machine Learning Operations (MLOps): Overview, Definition, and Architecture” by Dominik Kreuzberger, Niklas Kühl and Sebastian Hirschl “Operationalizing Machine Learning Models – A Systematic Literature Review” by Ask Berstad Kolltveit & Jingyue Li “MLOps: Continuous delivery and automation pipelines in machine learning” by Google   This is a personal blog. My opinion on what I share with you is that “All models are wrong, but some are useful”. Improve the accuracy of any model I present and make it useful!

Data-driven parenting

Growing children in a data-driven manner involves using data and evidence to inform decision-making about a child’s education and development. This can involve tracking a child’s progress over time, identifying areas for improvement, and implementing evidence-based interventions to support their growth and development. To grow children in a data-driven manner, it is important to regularly collect and track data on their development. This might involve using standardized assessments to measure a child’s skills and abilities in areas such as reading, math, and problem-solving. By tracking a child’s progress over time, parents and educators can identify areas where the child is excelling and areas where they may need additional support. Once data has been collected and analyzed, the next step is to use the information to inform decision-making about the child’s education and development. This might involve implementing evidence-based interventions, such as tutoring or enrichment programs, to support the child’s growth and development. It could also involve working with the child’s teachers and other educators to develop an individualized plan that meets the child’s unique needs. In addition to using data to inform decision-making, it is also important to provide children with opportunities to develop their data literacy skills. This might involve teaching children how to collect and analyze data, as well as how to use data to make informed decisions. By providing children with these skills, parents and educators can help them become more confident and independent learners. Overall, growing children in a data-driven manner involves regularly collecting and tracking data on a child’s development, using the information to inform decision-making, and providing children with opportunities to develop their data literacy skills. By following these steps, parents and educators can support a child’s growth and development in a data-driven manner If you want to see an example of data-driven parenting, check out my repository of baby/toddler guides. This is a personal blog. My opinion on what I share with you is that “All models are wrong, but some are useful”. Improve the accuracy of any model I present and make it useful!  

Uncovering the History and Meaning Behind the Tradition of Christmas Gifts The tradition of giving gifts on Christmas has its roots in several different cultural and religious practices. One of the most well-known origins of this tradition is the story of the Three Wise Men, also known as the Magi, who brought gifts of gold, frankincense, and myrrh to the newborn Jesus in the Christian Bible. In many cultures, the giving of gifts on Christmas is seen as a way to honor the gift of Jesus’s birth and to celebrate the spirit of giving and generosity. In other cultures, the giving of gifts on Christmas may be linked to other winter holidays or traditions, such as the celebration of the winter solstice or the exchange of gifts among family members and friends as a way of showing love and appreciation. In modern times, the giving of gifts on Christmas has become a widespread cultural practice, with many people exchanging gifts with loved ones as a way of celebrating the holiday season. The types of gifts that are given on Christmas can vary widely, and may include items such as toys, clothes, food, or other small gifts or tokens of appreciation. Why Giving Gifts to Kids is Good for Their Development and Happiness For a child, receiving a gift can be a positive and meaningful experience that helps to boost their self-esteem and feelings of worth. A gift can also be a tangible expression of love and affection from the person who gave it, which can help to strengthen the bond between the child and the giver. Receiving a gift can also be a way for a child to feel a sense of belonging and connection to others, as it is a symbol of being thought of and cared for by someone else. For children who may not have a lot of material possessions, receiving a gift can also be a way for them to feel more financially secure and able to participate in the holiday or celebration that the gift is being given for. In addition to the emotional and psychological benefits of receiving a gift, the act of giving a gift can also have positive psychological effects. Giving a gift can be a way for a child to show love and appreciation for someone else, which can help to foster feelings of gratitude and connection. It can also be a way for a child to practice generosity and selflessness, which can help to develop their sense of empathy and social responsibility.   Avoiding the Pitfalls: How to Ensure Gifts Don’t Harm Kids’ Development and Happiness While receiving a gift can generally be a positive and enjoyable experience for a child, there are certain circumstances in which a gift may have a negative impact. Some potential negative impacts of gifts on children may include: It is important for parents and caregivers to be mindful of these potential negative impacts of gifts and to try to balance the giving of gifts with other forms of love and affection, such as time spent together and words of praise and encouragement. It is important to choose age-appropriate toys that are safe and do not present any choking hazards for a one-year-old. It’s always a good idea to consider the child’s interests and developmental stage when choosing a gift. Some 3-year-olds may be more interested in imaginative play, while others may be more drawn to physical activity and construction toys. The Top 10 Must-Have Gifts for Four-Year-Olds: Fun and Educational Ideas for Little Learners   Here are ten gift ideas for 4 year olds: It’s always a good idea to consider the child’s interests and abilities when selecting a gift. Some children may prefer more active play, while others may enjoy quieter, more imaginative activities.   This is a personal blog. My opinion on what I share with you is that “All models are wrong, but some are useful”. Improve the accuracy of any model I present and make it useful!

two babies under 3

When is scientifically the best time to have your second? byu/EFNich inScienceBasedParenting Inspired by the above reddit post and the different views on the topic of picking the best interpregnancy period,  I created the below timeline based on scientific proof of the best time to have your second baby. It adds value to the reddit post by visually summarising all the info from the reference links and also spotting some contradictory outcomes.   Insights The best period to have your second baby is between 18 and 24 months after delivering the first baby. STUDY 1 Conceiving less than 6 months after delivery was associated with an increased risk of adverse outcomes for mom and baby but that waiting 24 months may not be necessary for high-income countries. STUDY 2 Children conceived less than 18 months after their mother’s previous birth or children conceived 60 or more months after their mother’s previous birth were more likely to have ASD when compared to children conceived between 18 to 59 months after their mother’s previous birth. STUDY 3 To reduce the risk of pregnancy complications and other health problems, research suggests waiting 18 to 24 months but less than five years after a live birth before attempting your next pregnancy. STUDY 4 For children conceived less than 12 months or more than 72 months after the birth of an older sibling, the risk of autism was two to three fold higher than for those conceived 36 months to 47 months later. STUDY 5 Biggest risk recorded for children conceived less than 12 month after the birth of an older sibling. STUDY 6 The risk for preterm birth was high if the interpregnancy interval was <6 months. The risk for preterm birth declined as the interval increased and reached the lowest level when the interpregnancy interval was between 12 and 23 months. For interpregnancy intervals of ≥24 months, the risk for preterm birth gradually increased. The risk for preterm birth was high if the interpregnancy interval was ≥120 months. STUDY 7 An increased risk of preterm birth for children born after IPIs of less than 13 months and >60 months relative to the reference category of 19–24 months. STUDY 8 “We compared approximately 3 million births from 1.2 million women with at least three children and discovered the risk of adverse birth outcomes after an interpregnancy interval of less than six months was no greater than for those born after an 18-23 month interval,” Dr Tessema said. “Given that the current recommendations on birth spacing is for a waiting time of at least 18 months to two years after live births, our findings are reassuring for families who conceive sooner than this. “However, we found siblings born after a greater than 60-month interval had an increased risk of adverse birth outcomes.” STUDY 9 To reduce the risk of pregnancy complications and other health problems, research suggests waiting 18 to 24 months but less than five years after a live birth before attempting your next pregnancy. Balancing concerns about infertility, people older than 35 might consider waiting 12 months before becoming pregnant again. STUDY 10 Intervals shorter than 36 months and longer than 60 months are associated with an elevated risk of infant death and other adverse outcomes. STUDY 11 Compared to individuals whose first two children were born at most 18 months apart, individuals whose children were more widely spaced had a lower divorce risk. References STUDY 1: https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0255000 STUDY 2: https://www.cdc.gov/ncbddd/autism/features/time-between-births.html STUDY 3: https://www.mayoclinic.org/healthy-lifestyle/getting-pregnant/in-depth/family-planning/art-20044072 STUDY 4: https://time.com/4033506/autism-risk-siblings/ STUDY 5: https://researchonline.lshtm.ac.uk/id/eprint/4663143/7/Schummers_etal_2021_Short-interpregnancy-interval-and-pregnancy.pdf https://www.dovepress.com/association-of-short-and-long-interpregnancy-intervals-with-adverse-bi-peer-reviewed-fulltext-article-IJGM STUDY 6: https://www.michigan.gov/-/media/Project/Websites/mdhhs/Folder4/Folder15/Folder3/Folder115/Folder2/Folder215/Folder1/Folder315/200804IPI_PTB_LBW_SGA_2008-2018.pdf?rev=e978a7ae96db445ebb0a4cf6d31ea8f9 STUDY 7: https://www.tandfonline.com/doi/full/10.1080/00324728.2020.1714701 STUDY 8: https://www.sciencedaily.com/releases/2021/07/210719143421.htm STUDY 9: https://www.mayoclinic.org/healthy-lifestyle/getting-pregnant/in-depth/family-planning/art-20044072 STUDY 10: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6667399/ STUDY 11: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6993964/   (Note: I participate in the affiliate amazon program. This post may contain affiliate links from Amazon or other publishers I trust (at no extra cost to you). I may receive a small commission when you buy using my links, this helps to keep the blog alive! See disclosure for details.) BONUS –  a free audible book from Amazon: This is a personal blog. My opinion on what I share with you is that “All models are wrong, but some are useful”. Improve the accuracy of any model I present and make it useful!

Google BigQuery Python

Get data from a Google BigQuery table using Python 3 – a specific task that took me a while to complete due to little or confusing online resources   You might ask why a Data Scientist was stuck to solve such a trivial Data Engineering task? Well… because most of the time… there is no proper Data Engineering support in an organization. Steps to follow if you want to connect to Google BigQuery and pull data using Python: Ask your GCP admin to generate a Google Cloud secret key and save it in a json file: install libraries: pip install google-cloud-bigquery pip install google-cloud pip install tqdm pip install pandas_gbq import libraries: import os import io from google.cloud.bigquery.client import Client from google.cloud import bigquery import pandas_gbq set Google Credentials (your json file created at Step 0): os.environ[‘GOOGLE_APPLICATION_CREDENTIALS’] = ‘path to your json file/filename.json’ define a BQ client: storage_client = storage.Client( project = ‘yourprojectname’) define de query and save it in a variable query = f””” SELECT * FROM `projectname.tablename`; “”” use pandas_gbq to read the results and save them in a dataframe: queryResultsTbl= pandas_gbq.read_gbq( query, project_id=project_id, dialect=”standard” Something like this: import os import io from google.cloud.bigquery.client import Client from google.cloud import bigquery import pandas_gbq os.environ[‘GOOGLE_APPLICATION_CREDENTIALS’] = ‘google-key_Cristina.json’ project_id = “project-name” client = bigquery.Client(project = project_id) query = f””” SELECT * FROM `project-name.table-name`; “”” queryResultsTbl= pandas_gbq.read_gbq( query, project_id=project_id, dialect=”standard” ) queryResultsTbl.head(10)   This is a personal blog. My opinion on what I share with you is that “All models are wrong, but some are useful”. Improve the accuracy of any model I present and make it useful!

GCS GCP Buckets

Get data from a GCS bucket using Python 3 – a specific task that took me a while to complete due to little or confusing online resources   You might ask why a Data Scientist was stuck to solve such a trivial Data Engineering task? Well… because most of the time… there is no proper Data Engineering support in an organization. Anyways, my challenge was that I ran out of RAM while using Google Colab Notebook to read Google Could Storage ( GCS ) data, so I just wanted to work locally in Python to leverage my 32 GB of RAM. In Colab I used to run gsutil commands  and everything was easier due to using a Google environment. Steps to follow if you want to pull GCS data locally: Ask your GCP admin to generate a Google Cloud secret key and save it in a json file: install ( pip install google-cloud-storage ) & import GCP libraries: from google.cloud import storage define a GCS client: storage_client = storage.Client() loop through the buckets you want to read data from (I’ve saved my buckets in a list) for each bucket you’ll need: bucket name prefix create an iterator save the blobs identify the CSVs (in my case) download the CSVs save data in a pandas dataframe   Something like this:     from google.cloud import storage from google.cloud.bigquery.client import Client import pandas as pd import io os.environ[‘GOOGLE_APPLICATION_CREDENTIALS’] = ‘google-key_Cristina.json’ storage_client = storage.Client() BM_GCS_Buckets = open(‘BM_buckets.txt’,’r’) BM_GCS_Buckets = list(BM_GCS_Buckets) def find_bucket( plant_name ): plant = plant_name buckets = BM_GCS_Buckets result = ”     for bucket in buckets: if re.findall(plant,bucket): result = bucket break     return result for i in [‘ML’,’MP’]:     bucket_name = find_bucket(i).strip()     bucket = f’bucketname’     prefix_name = f”” + bucket_name.replace(‘gs://bucketname/’,”) + “/”     iterator = storage_client.list_blobs(bucket, prefix=prefix_name, delimiter=”/”)     blobs = storage_client.list_blobs(bucket, prefix=prefix_name)     files = []     files = [blob for blob in blobs if blob.name.endswith(“.csv”)]     data_hist = pd.DataFrame()     all_df = []     for file in files: df = pd.read_csv(io.BytesIO(file.download_as_bytes()), index_col=0)         all_df.append(df)     data_hist = pd.concat(all_df)   This is a personal blog. My opinion on what I share with you is that “All models are wrong, but some are useful”. Improve the accuracy of any model I present and make it useful!

1 year old baby

Hey! Baby just got promoted to Toddler. Toddlerhood is a exciting period and it lasts until they reach 3 years.  Milestones When researching my content, I use official websites such as the CDC ( Centers for Disease Control and Prevention). They list the below as the milestones a child should reach by the end of 1 year: Social/Emotional Milestones Plays games with you, like pat-a-cake Language/Communication Milestones Waves “bye-bye” Calls a parent “mama” or “dada” or another special name Understands “no” (pauses briefly or stops when you say it) Cognitive Milestones (learning, thinking, problem-solving) Puts something in a container, like a block in a cup Looks for things he sees you hide, like a toy under a blanket Movement/Physical Development Milestones Pulls up to stand Walks, holding on to furniture Drinks from a cup without a lid, as you hold it Picks things up between thumb and pointer finger, like small bits of food UNICEF lists out these milestones: He is copying movements and gestures. Bangs objects together. Drinks from a cup and uses other objects correctly. Finds things that are hidden. He looks at the right object when it is named. Can follow simple directions and lets go of objects without help. He puts objects in containers and can take them out. Can take a few steps without support. Gets into a sitting position without support. Pulls up to stand and walks while holding onto furniture.   As they’re toddlers now, they begin to test limits by engaging in certain behaviors to drive caregiver response.    Family Guy Stewie Griffin GIFfrom Family Guy GIFs   Baby Growth    The normal growth range at 1 year old differs between boys and girls: Length Girls range from 66 – 82 cm (26-32 in.)  in height; Boys range from 68 – 83 cm (27-33 in.)  in height; Weight Girls range from 7000-13100 gr (15-29 lb.) in weight; Boys range from 7700-13300gr (17-29 lb.) in weight. For more info on this, check the Growth WHO Standards table and other baby standards here.     Baby Sleep Baby will keep the below schedule until around 16 months of age: 1st nap at 9 am; 2nd nap at 1 pm; 7 pm bedtime. It is normal for your baby to get up between 6 and 7 am in the morning, but also normal at this age to wake up between 5 to 6 am. Your baby might seem well rested ( probably slept for 11 hours during the night), but 12 hours is also achievable. There are a few things to try in order to push the wake up hour to 7 am: keep a sleep log to note down what you change in the routine and how it impacts your baby’s sleep. Get a free here; if you don’t have 80% darkness in the room, you should try harder to achieve it. I wrote here about the important room and baby sleep training prep; if your baby sleeps less than 1.5hr during the day, move bedtime 15 mins earlier each day until the baby will get on track (remember: sleep log!); if your baby sleeps more than 3hr during the day, try and cap the longest nap (so the baby will be prepared for the 12 hours night-sleep). if you tried all of these, just let the baby enjoy some crib time (don’t make light in the room until it gets as close as possible to 6:30-7 am).   Baby Feeding 1 Year – 3 meals + 2 snacks / day : BREAKFAST: Fruits LUNCH: Vegetables + Proteins SNACK: Fruits DINNER: Vegetables, Cereals, Dairy products SNACK: Vegetables Fruits: everything ; Vegetables: same as months above plus the new ones: radishes, peas, artichoke, sorrel, cabbage, nettles; Proteins: same as month above plus: fish, cheese, cream cheese, cheddar, parmesan, edam, gouda, svaiter, grana padano, emmental, pecorino, goats cheese; Cereals/ Pseudocereals: everything ; Try waiting at least 2 days after introducing new food to the baby to check for any allergic reactions. If you notice symptoms such as diarrhea and vomiting it might mean that the baby is allergic to a certain food type. Don’t forget to start giving the baby water. If you use bottled water, check the level of sodium or sulphate. Look on the label to check the levels: Sodium (Na) <= 200 mg/l ; Sulphate (‘SO’ or ‘SO4’) <= 250 mg/l.   Baby Eyes Some babies will experience changes in eye color up to 1 year of age and some little ones’ eye color even continues to change hues until they’re 3 years old. Activities   Sky is the limit, there are so many activities that you can do without the need of any special toys or materials: Opening and closing a drawer Building a tower Finding the object Inserting objects Introduction to puzzles Painting Pretend games with toys Rolling a ball Spreading sand or.. flour Squeezing a wet sponge Put the top on and.. off Using a key Play with water volume and pressure Also, let the baby crawl as much a possible (don’t force them to walk just yet) as crawling is beneficial for hand-eye coordination and boosts gross and fine motor skills. Must-have toys  (Note: I participate in the affiliate amazon program. This post may contain affiliate links from Amazon or other publishers I trust (at no extra cost to you). I may receive a small commission when you buy using my links, this helps to keep the blog alive! See disclosure for details.) When you exhaust all the activities that use no materials, get some of the below toys (for the age 1Y ), your baby will love them: Wooden Shape Sorting & Ring Stacking. Kids can count the holes then match the blocks with the pillars on the top of the wooden cart, cultivating their number learning and color sorting ability. Get them here. More Stacking, a Ring. Each ring features a different texture and weight; Textural variety is great for mouthing!; buy one here. Pull String Learning Rope. Help Develop

Independent play

What is Independent Play? Independent play is when children play by themselves with a parent nearby Why is important?  Play can enhance brain structure and function and promote executive function (the process of learning). Read more here. How to promote solo play? – by the parenting junkie 😉 Set up the right type of playspace. Consider separating screens from playspace Don’t overpower your child’s play Create a space where they can be alone Have only age appropriate toys on offer Examine your expectations Consider keeping them close to you Use storage that your child can manipulate Treat play as the natural birthright Don’t praise, comment or evaluate How long can babies/toddlers play by themselves? Independent play at 12 months: @thebabydatascientist How long can a 1 year old play alone? www.thebabydatascientist.com #babiesoftiktok #thebabydatascientist #independentplay ♬ Lust For Life – Iggy Pop If you enjoyed these baby play stats, you’ll find this repository useful. Make sure you bookmark it as it’s continuously growing!   This is a personal blog. My opinion on what I share with you is that “All models are wrong, but some are useful”. Improve the accuracy of any model I present and make it useful!