3 datasets found
  1. m

    Students' affect during Lock-down

    • data.mendeley.com
    Updated Jul 7, 2020
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Qudsia Kalsoom (2020). Students' affect during Lock-down [Dataset]. http://doi.org/10.17632/xsv4tfmgh7.1
    Explore at:
    Dataset updated
    Jul 7, 2020
    Authors
    Qudsia Kalsoom
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Description

    The excel file contains data about 10-18 years old students' affect/ well-being during lock-down in Pakistan. The cells in the top row contain the items. The numbers in the columns 'C' to 'J' represent following. 1 = Very Often; 2 = Often; 3 = Sometimes; 2 = Rarely; 1 = Never The numbers in the column 'K' have been coded in reverse order. Column 'L' contains response of the question "Have you started fighting more with your siblings?" Column 'M' and 'N' include open-ended, short responses.

  2. Grandpa Golf

    • kaggle.com
    Updated Sep 12, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    FletcherKennamer (2023). Grandpa Golf [Dataset]. https://www.kaggle.com/datasets/fletcherkennamer/grandpa-golf/code
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Sep 12, 2023
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    FletcherKennamer
    Description

    My Grandpa asked if the programs I was using could calculate his Golf League’s handicaps, so I decided to play around with SQL and Google Sheets to see if I could functionally recreate what they were doing.

    The goal is to calculate a player’s handicap, which is the average of the last six months of their scores minus 29. The average is calculated based on how many games they have actually played in the last six months, and the number of scores averaged correlates to total games. For example, Clem played over 20 games so his handicap will be calculated with the maximum possible scores accounted for, that being 8. Schomo only played six games, so the lowest 4 will be used for their average. Handicap is always calculated with the lowest available scores.

    This league uses Excel, so upon receiving the data I converted it into a CSV and uploaded it into bigQuery.

    First thing I did was change column names to best represent what they were and simplify things in the code. It is much easier to remember ‘someone_scores’ than ‘int64_field_number’. It also seemed to confuse SQL less, as int64 can mean something independently. (ALTER TABLE grandpa-golf.grandpas_golf_35.should only need the one RENAME COLUMN int64_field_4 TO schomo_scores;)

    To Find the average of Clem’s scores: SELECT AVG(clem_scores) FROM grandpa-golf.grandpas_golf_35.should only need the one LIMIT 8; RESULT: 43.1

    Remembering that handicap is the average minus 29, the final computation looks like: SELECT AVG(clem_scores) - 29 FROM grandpa-golf.grandpas_golf_35.should only need the one LIMIT 8; RESULT: 14.1

    Find the average of Schomo’s scores: SELECT AVG(schomo_scores) - 29 FROM grandpa-golf.grandpas_golf_35.should only need the one LIMIT 6; RESULT: 10.5

    This data was already automated to calculate a handicap in the league’s excel spreadsheet, so I asked for more data to see if i could recreate those functions.

    Grandpa provided the past three years of league data. The names were all replaced with generic “Golfer 001, Golfer 002, etc”. I had planned on converting this Excel sheet into a CSV and manipulating it in SQL like with the smaller sample, but this did not work.

    Immediately, there were problems. I had initially tried to just convert the file into a CSV and drop it into SQL, but there were functions that did not transfer properly from what was functionally the PDF I had been emailed. So instead of working with SQL, I decided to pull this into google sheets and recreate the functions for this spreadsheet. We only need the most recent 6 months of scores to calculate our handicap, so once I made a working copy I deleted the data from before this time period. Once that was cleaned up, I started working on a function that would pull the working average from these values, which is still determined by how many total values there were. This correlates as follows: for 20 or more scores average the lowest 8, for 15 to 19 scores average the lowest 6, for 6 to 14 scores average the lowest 4 and for 6 or fewer scores average the lowest 2. We also need to ensure that an average value of 0 returns a value of 0 so our handicap calculator works. My formula ended up being:

    =IF(COUNT(E2:AT2)>=20, AVERAGE(SMALL(E2:AT2, ROW(INDIRECT("1:"&8)))), IF(COUNT(E2:AT2)>=15, AVERAGE(SMALL(E2:AT2, ROW(INDIRECT("1:"&6)))), IF(COUNT(E2:AT2)>=6, AVERAGE(SMALL(E2:AT2, ROW(INDIRECT("1:"&4)))), IF(COUNT(E2:AT2)>=1, AVERAGE(SMALL(E2:AT2, ROW(INDIRECT("1:"&2)))), IF(COUNT(E2:AT2)=0, 0, "")))))

    The handicap is just this value minus 29, so for the handicap column the script is relatively simple: =IF(D2=0,0,IF(D2>47,18,D2-29)) This ensures that we will not get a negative value for our handicap, and pulls the basic average from the right place. It also sets the handicap to zero if there are no scores present.

    Now that we have our spreadsheet back in working order with our new scripts, we are functionally done. We have recreated what my Grandpa’s league uses to generate handicaps.

  3. f

    The prostacyclin receptor PTGIR is a NRF2-dependent regulator of CD8 T cell...

    • springernature.figshare.com
    xlsx
    Updated Jun 28, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Michael S. Dahabieh; Lisa M. DeCamp; Brandon M. Oswald; Zhen Fu; Susan M. Kitchen-Goosen; Matthew Vos; Shelby E. Compton; Joseph Longo; Nicole Foy; Kelsey S. Williams; Abigail E. Ellis; Amy Johnson; Ibukunoluwa Sodiya; Michael Vincent; Hyoungjoo Lee; Ryan D. Sheldon; Connie M. Krawczyk; Chen Yao; Tuoqi Wu; Russell G. Jones (2025). The prostacyclin receptor PTGIR is a NRF2-dependent regulator of CD8 T cell exhaustion [Dataset]. http://doi.org/10.6084/m9.figshare.26102845.v1
    Explore at:
    xlsxAvailable download formats
    Dataset updated
    Jun 28, 2025
    Dataset provided by
    figshare
    Authors
    Michael S. Dahabieh; Lisa M. DeCamp; Brandon M. Oswald; Zhen Fu; Susan M. Kitchen-Goosen; Matthew Vos; Shelby E. Compton; Joseph Longo; Nicole Foy; Kelsey S. Williams; Abigail E. Ellis; Amy Johnson; Ibukunoluwa Sodiya; Michael Vincent; Hyoungjoo Lee; Ryan D. Sheldon; Connie M. Krawczyk; Chen Yao; Tuoqi Wu; Russell G. Jones
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Description

    Table S1: Gene Set Enrichment Analysis (GSEA) of the oncogenic signature gene sets (MSigDB C6 gene set) enriched in Tex versus Teff cell clusters. RNA-seq data are mined from GSE89307, GSE84820, and GSE86881. Refer to first tab of excel sheet for detailed description of column headings in subsequent data tab.

    Table S2: qPCR, shRNA and sgRNA oligonucleotide sequences. 5’ to 3’ oligonucleotide sequences used for qPCR, CRISPR-Cas9 mediated knockout, and shRNA-mediated knockdown. Q denotes primers used for qPCR, and F and R denote forward and reverse primers, respectively.

    Table S3: Differential gene expression analysis from RNA-seq of adoptively transferred Keap1-/- versus WT P14 cells, isolated 7 days post LCMV Armstrong infection. Refer to first tab of excel sheet for detailed description of column headings in subsequent data tab.

    Table S4: C2, C5, C6, C7, NFE2L2.v2 and H Gene set enrichment analysis (GSEA) from RNA-seq of Keap1-/- versus WT P14+ CD8+ T cells upon LCMV Armstrong infection. A Positive or negative normalized enrichment score (NES) indicates a gene set enrichment in Keap1-/- cells or WT cells, respectively. Refer to first tab of excel sheet for detailed description of column headings in subsequent data tabs.

    Table S5: Differential gene expression analysis from RNA-seq of in vitro cultured CD8+ T cells with variable expression of PTGIR, treated with vehicle or iloprost. Refer to first tab of excel sheet for detailed description of column headings in subsequent data tabs.

    Table S6: Pathway analysis from RNA-seq of in vitro cultured CD8+ T cells with variable expression of PTGIR, treated with vehicle or iloprost. Refer to first tab of excel sheet for detailed description of column headings in subsequent data tabs.

    Liver annotated blots: Original western blot (labelled) for liver cell western blots show in Figure 1D

    HO1_LAMINB1_Tcells- Original western blot (labelled) for HO-1 and LAMIN B1 T cell western blots show in Figure 1D.

    KEAP1_Tcells- Original western blot (labelled) for KEAP1 T cell western blots show in Figure 1D.

    NQO1_Tcells- Original western blot (labelled) for KEAP1 T cell western blots show in Figure 1D.

  4. Not seeing a result you expected?
    Learn how you can add new datasets to our index.

Share
FacebookFacebook
TwitterTwitter
Email
Click to copy link
Link copied
Close
Cite
Qudsia Kalsoom (2020). Students' affect during Lock-down [Dataset]. http://doi.org/10.17632/xsv4tfmgh7.1

Students' affect during Lock-down

Explore at:
3 scholarly articles cite this dataset (View in Google Scholar)
Dataset updated
Jul 7, 2020
Authors
Qudsia Kalsoom
License

Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
License information was derived automatically

Description

The excel file contains data about 10-18 years old students' affect/ well-being during lock-down in Pakistan. The cells in the top row contain the items. The numbers in the columns 'C' to 'J' represent following. 1 = Very Often; 2 = Often; 3 = Sometimes; 2 = Rarely; 1 = Never The numbers in the column 'K' have been coded in reverse order. Column 'L' contains response of the question "Have you started fighting more with your siblings?" Column 'M' and 'N' include open-ended, short responses.

Search
Clear search
Close search
Google apps
Main menu