N3XT191
N3XT191 OP t1_itn5gv5 wrote
Reply to [OC] 3D Bode/Nyquist plot I made for a friend. Smth about electrical circuits... by N3XT191
Data: Measured by a friend, slightly smoothed.
Tools: Matplotlib
sourcecode: https://pastebin.com/raw/WyEkseCA
Honestly, I have no idea what this actually means, it's something about electrical circuits in a solar panel, I just did the cool 3D visualisation...
Suggestions always welcome!
Submitted by N3XT191 t3_ycnavk in dataisbeautiful
N3XT191 OP t1_itmy5xb wrote
Reply to comment by PFhelpmePlan in [OC] Distribution of page counts by genre, my personal bookshelves! by N3XT191
Ideally they’d be evenly distributed so the width of the point cloud represents the density (like in a violin plot), but that was too annoying to implement. Maybe next time!
N3XT191 OP t1_itmxdsy wrote
Reply to comment by InsuranceToTheRescue in [OC] Distribution of page counts by genre, my personal bookshelves! by N3XT191
No hard cutoff, but CA is topics like climate change, covid, the Theranos scandal while the most recent books included in History are a book on Watergate and a book on The Troubles.
N3XT191 OP t1_itmjn7k wrote
Reply to comment by Important_Ice_1080 in [OC] Distribution of page counts by genre, my personal bookshelves! by N3XT191
Both are the 3rd book in a trilogy, so you gotta earn it! ;)
N3XT191 OP t1_itmj8sz wrote
Reply to comment by Important_Ice_1080 in [OC] Distribution of page counts by genre, my personal bookshelves! by N3XT191
Death's End: 736
The Relentless Moon 704
Dune 687
N3XT191 OP t1_itm9t4u wrote
Reply to comment by PFhelpmePlan in [OC] Distribution of page counts by genre, my personal bookshelves! by N3XT191
Sure: https://pastebin.com/raw/kd1WgRza
The data file is just a CSV with pagecount,genre_id
.
I start with creating filtered_pagecounts
which is just a list of genres, each genre being a list of y-values.
Add some random x-offsets (line 36) and then plot 1 scatter plot per genre and the box plot on top.
N3XT191 OP t1_itlf3jp wrote
Reply to comment by stone_chestnut in [OC] Distribution of page counts by genre, my personal bookshelves! by N3XT191
That would be interesting, but the data is inherently biased by my selection and only 3 genres have enough numbers for conclusions anyway.
So actual conclusions would be very hard to make!
N3XT191 OP t1_itlddjr wrote
Reply to comment by doesnothingtohirt in [OC] Distribution of page counts by genre, my personal bookshelves! by N3XT191
But the mean isn’t even shown? 😅
Box plots show 25th, 50th (median) and 75th percentile plus the full range (minus outliers)
N3XT191 OP t1_itl6qzm wrote
Reply to comment by draypresct in [OC] Distribution of page counts by genre, my personal bookshelves! by N3XT191
I’ve got them grouped into fiction and non-fiction internally, so in my database it does makes sense (:
N3XT191 OP t1_itl5ktz wrote
Reply to comment by dongorras in [OC] Distribution of page counts by genre, my personal bookshelves! by N3XT191
Nope, not normalized. There’s definitely quite some range in word count / page, I know that The Power Broker is about 15% longer (by word count) than Oathbringer but it has 100 fewer pages.
Especially the very short novellas have sometimes only half (or even fewer) as many words/page.
Sadly word count data is not nicely available…
N3XT191 OP t1_itl5fgm wrote
Reply to comment by draypresct in [OC] Distribution of page counts by genre, my personal bookshelves! by N3XT191
Yeah, most fantasy books are in the 400-700 range but at the lower end I’ve got a couple novellas and at the upper end I’ve got Sanderson, Tad Williams and Steven Erikson 😅
The “Historical” section is actual “Historical Fiction” (bad label I just realized), so no reference. The “History” genre is probably about 15% references on average.
N3XT191 OP t1_itl3ycb wrote
EDIT: “Historical” (4th genre) is Historical Fiction! “History” (7th) is non-fiction!
Data: My own shelves, exported from my own app (https://shelf.li, you can explore the data by clicking "Try the demo")
Tools: Matplotlib
Genres: Assigned manually, sometimes obviously debatable...
Books over 1100 pages:
- Oathbringer (Brandon Sanderson): 1331
- The Stand (Stephen King): 1325
- The Count of Monte Cristo: 1312
- Die Arena (Stephen King, German): 1279
- The Power Broker (Robert A. Caro): 1246
- World without End (Ken Follett): 1240
- Rhythm of War (Brandon Sanderson): 1230
- Master of the Senate (Robert A. Caro): 1200
- Memories of Ice (Steven Erikson): 1180
- Edge of Eternity (Ken Follett) 1158
Submitted by N3XT191 t3_ycb3np in dataisbeautiful
N3XT191 t1_istil25 wrote
Reply to comment by jsmd1890 in My 3-month job search as a Professional Environmental Engineer[OC] by gamingsniper
Probably Sankeymatic; just google it, it’s a website
N3XT191 t1_isthpi2 wrote
Reply to comment by bassetsandbotany in [OC] Found Golf Balls this Summer by Inigomntoya
Look at mine, in case that helps
https://reddit.com/r/dataisbeautiful/comments/x0mg3s/oc_applications_for_my_first_ever_real_job_as/
18 applications, 9 interviews (4 of which I declined), got 3 offers.
3 weeks from application to signed contract.
Submitted by N3XT191 t3_y6c3dp in dataisbeautiful
N3XT191 OP t1_itu5z6d wrote
Reply to comment by TheSpanishKman in [OC] 3D Bode/Nyquist plot I made for a friend. Smth about electrical circuits... by N3XT191
I understand very little of what any of this data means, but I am quite proud of how readable the graph is. (with the exception of details like the freq axis ticks...)
In general, it is very hard to interpret a single line in 3D from just a static plot. Even with the 3 projections onto the 3 "walls", it's not easy to intuitively understand the shape of the line and how it behaves.
The regularly spaced vertical lines together with the semi-transparent fill make it surprisingly easy to just understand the shape, simply from looking at it. And basically from any direction.
There aren't too many real-life cases where you have a single line in a 3D space, but I'm definitely going to use this exact visualisation again if I ever come across one!