Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Printing effect sizes for variables in an anova
Post: RE: Printing effect sizes for variables in an anov...

(Feb-01-2023, 11:14 AM)Larz60+ Wrote: to suggest ammending you code, we should first be able to examine your code. You haven't provided that. There are examples: All examples Ordinary Least Squares ...
eyavuz21 General Coding Help 2 991 Feb-01-2023, 02:12 PM
    Thread: Printing effect sizes for variables in an anova
Post: Printing effect sizes for variables in an anova

Hey all, I have the following code. resultmodeldistancevariation2sleep = smf.ols(formula='weighteddistance ~ age + C(gender) + C(highest_education_level_acheived)',data=x).fit() resultmodeldistance...
eyavuz21 General Coding Help 2 991 Feb-01-2023, 10:29 AM
    Thread: Converting a json file to a dataframe with rows and columns
Post: RE: Converting a json file to a dataframe with row...

(Jan-29-2023, 01:56 PM)snippsat Wrote: (Jan-29-2023, 11:02 AM)eyavuz21 Wrote: Thanks so much for your help. I have tried your code above - it gives me an empty dataframe. When I try the followin...
eyavuz21 General Coding Help 13 4,543 Jan-29-2023, 03:59 PM
    Thread: Converting a json file to a dataframe with rows and columns
Post: RE: Converting a json file to a dataframe with row...

(Jan-29-2023, 02:26 AM)deanhystad Wrote: That is not a json file. game-data is not valid json, and json syntax uses double quotes instead of single quotes. The file also looks like it is several i...
eyavuz21 General Coding Help 13 4,543 Jan-29-2023, 11:02 AM
    Thread: Converting a json file to a dataframe with rows and columns
Post: RE: Converting a json file to a dataframe with row...

Thanks so much for your help. I have tried your code above - it gives me an empty dataframe. When I try the following code: import json game_data = [] with open('/Users/macbook/Desktop/SavedSHQdat...
eyavuz21 General Coding Help 13 4,543 Jan-29-2023, 10:47 AM
    Thread: Converting a json file to a dataframe with rows and columns
Post: RE: Converting a json file to a dataframe with row...

(Jan-29-2023, 12:02 AM)deanhystad Wrote: We know that part. What does the json look like? You only provide a tiny peek, not enough to understand what information is in the json file. Is this enoug...
eyavuz21 General Coding Help 13 4,543 Jan-29-2023, 12:08 AM
    Thread: Converting a json file to a dataframe with rows and columns
Post: RE: Converting a json file to a dataframe with row...

(Jan-28-2023, 11:46 PM)deanhystad Wrote: That is the same question as before with no additional information. Do you expect a different answer? Sorry if I was unclear with regards to your previous q...
eyavuz21 General Coding Help 13 4,543 Jan-28-2023, 11:52 PM
    Thread: Converting a json file to a dataframe with rows and columns
Post: RE: Converting a json file to a dataframe with row...

(Jan-28-2023, 09:19 PM)deanhystad Wrote: That depends on what is "meta"? Is meta a user that has an id == 178054? import json import pandas as pd json_string = '[{"meta": {"user_id": "178054", "le...
eyavuz21 General Coding Help 13 4,543 Jan-28-2023, 10:23 PM
    Thread: Converting a json file to a dataframe with rows and columns
Post: Converting a json file to a dataframe with rows an...

Hey all, I am trying to convert a json file into a dataframe. import pandas as pd import os from pandas.io.json import json_normalize data = [] path_to_json = '/Users/macbook/Desktop/Saveddata'...
eyavuz21 General Coding Help 13 4,543 Jan-28-2023, 08:13 PM
    Thread: Multiple.ui windows showing at the same time when I only want to show at a time
Post: RE: Multiple.ui windows showing at the same time w...

(Dec-19-2022, 12:13 PM)Larz60+ Wrote: Please take a look at the free Project Jupyter I think this is exactly what you're looking for. Run the demo in your browser, short and sweet. You can break yo...
eyavuz21 General Coding Help 4 1,038 Dec-19-2022, 12:35 PM
    Thread: Multiple.ui windows showing at the same time when I only want to show at a time
Post: Multiple.ui windows showing at the same time when ...

Hey all, I have the following code below. I am trying to show take the user through an experiment, where the experiment is split into different windows (window 1, then window 2, then the next windo...
eyavuz21 General Coding Help 4 1,038 Dec-19-2022, 11:32 AM
    Thread: Trying to loop through code to plot seaborn line plots across multiple subplots
Post: Trying to loop through code to plot seaborn line p...

Hey all, I am trying to loop through a dataframe 'out' and create a separate subplot for each group and level. There are 35 groups and 5 levels, producing 175 plots in total. I thus want to create ...
eyavuz21 General Coding Help 0 1,695 Dec-05-2022, 10:46 AM
    Thread: Python Assignment 3 - Applied Data Science - 2.3
Post: RE: Python Assignment 3 - Applied Data Science - 2...

(Jun-06-2020, 04:52 AM)pyzyx3qwerty Wrote: Also, I'm confused. You have posted three codes - which one is the code in which you are getting this error? The most recent one!
eyavuz21 Homework 8 4,984 Jun-06-2020, 08:59 AM
    Thread: Python Assignment 3 - Applied Data Science - 2.3
Post: RE: Python Assignment 3 - Applied Data Science - 2...

(Jun-05-2020, 04:21 PM)pyzyx3qwerty Wrote: Please show the full error/traceback, with proper tags added Hey, Here is the full error message: Traceback (most recent call last): File "<input&g...
eyavuz21 Homework 8 4,984 Jun-05-2020, 06:11 PM
    Thread: Python Assignment 3 - Applied Data Science - 2.3
Post: RE: Python Assignment 3 - Applied Data Science - 2...

(Jun-05-2020, 10:37 AM)pyzyx3qwerty Wrote: List index out of range error occurs in Python when we try to access an undefined element from the list. The only way to avoid this error is to mention the...
eyavuz21 Homework 8 4,984 Jun-05-2020, 02:59 PM
    Thread: Python Assignment 3 - Applied Data Science - 2.3
Post: Applied Data Science with Python - homework 2.3 (c...

Hey all, I have the following command below. The overall aim is to allow the user to select a Y-value by pressing on the bar graph. The colour of each bar should then change depending on what this...
eyavuz21 Homework 8 4,984 Jun-05-2020, 10:12 AM
    Thread: Python Assignment 3 - Applied Data Science - 2.3
Post: RE: Python Assignment 3 - Applied Data Science - 2...

(Jun-03-2020, 05:42 PM)eyavuz21 Wrote: Hey all, Here is an improved version of the code above: import pandas as pd import numpy as np from scipy import stats import matplotlib.pyplot as plt np.ran...
eyavuz21 Homework 8 4,984 Jun-04-2020, 07:52 AM
    Thread: Applied Data Science with Python - homework 2.2 (Weather plotting)
Post: RE: Applied Data Science with Python - homework 2....

(May-31-2020, 12:28 PM)ibreeden Wrote: On which line do you get this error? Surely the complete error message tells you. Please post the complete error message.In Error tags. All fine! Sorted now!
eyavuz21 Homework 4 3,385 Jun-03-2020, 07:09 PM
    Thread: Python Assignment 3 - Applied Data Science - 2.3
Post: Python Assignment 3 - Applied Data Science - 2.3

Hey all, I have the following code below: import pandas as pd import numpy as np from scipy import stats import matplotlib.pyplot as plt np.random.seed(12345) scores = [np.random.normal(32000,2000...
eyavuz21 Homework 8 4,984 Jun-03-2020, 05:42 PM
    Thread: Applied Data Science with Python - homework 2.2 (Weather plotting)
Post: Applied Data Science with Python - homework 2.2 (W...

Hey all, I have the following code below: from datetime import datetime import pandas as pd import matplotlib.pyplot as plt pd.set_option("display.max_rows",None,"display.max_columns",None) data = ...
eyavuz21 Homework 4 3,385 May-31-2020, 12:21 PM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020