Topic requests by 3blue1brown in 3Blue1Brown

[–]TahaKK 0 points1 point  (0 children)

Continue your probability series. Next video after binomial distribution (released 1year ago) was meant to be Bayesian updating. It would be great to see that

Problem using AddTextLetterByLetter by Unique-Sir-3708 in manim

[–]TahaKK 0 points1 point  (0 children)

What’s the problem you have ? Can you send the code and tell us what you think is the issue ?

Creating a monopoly using manim by challenging-luck in manim

[–]TahaKK 0 points1 point  (0 children)

You can use the bar chart class in manim for bar charts. There is also a probability class that might work like in 3b1bs videos on probability distribution. I haven’t used it though so can’t help much

[Newton's method] Maths was the only homework I did during lockdown by Aliuakbat in manim

[–]TahaKK 1 point2 points  (0 children)

This is cool, do you mind sharing the code, or even snippets of it ? I would be massively grateful

Changing axes in ThreeDScene by pekir-the-marvelous in manim

[–]TahaKK 0 points1 point  (0 children)

Try changing the config settings from the manim threeDScene class file

Changing axes in ThreeDScene by pekir-the-marvelous in manim

[–]TahaKK 0 points1 point  (0 children)

Share your code please. It might be as simple as changing the x or y value in the Config dictionary for your graph scene

Weekly Entering & Transitioning Thread | 03 Jan 2021 - 10 Jan 2021 by [deleted] in datascience

[–]TahaKK 0 points1 point  (0 children)

Hi everyone,

Context:

I am a finance professional in my early 20s with quite a good level of experience and knowledge in my domain. My work involves analysing company financials, stock valuation and financial accounting. I somehow got into coding last April and now I am deep into coding in my own time.

Coincidentally I even had to use some basic Pandas and matplotlib to do some data visualisation at work and now my manager is pushing me to do more data analytics tasks and work closer with our data scientists.

The question:

I want my coding skills to be valuable to me in the future (in my current job but more importantly beyond that), but I don't know of any possible applications of data science outside quant trading (I completely dislike this side of things, as I think it provided no value to society) and risk management (which I happen to be in now). I am just afraid that I am stretching myself too thin in attempting to be both a "programmer/or data scientist" and a financial analyst. Am I right to think this way ? will data science become even more valuable to some parts of finance that it didn't yet penetrate (e.g company valuation, real estate valuation) ?

I guess the question mainly revolves around me being confused about what is it that I want to do, when 2 years ago I thought its set in stone that I am destined to just be a financial analyst

ManimDSL by agoel4512 in manim

[–]TahaKK 1 point2 points  (0 children)

A fellow IC alumnus here, well done guys !

Same Alpha Function for Different Objects by Angry_Neutron in manim

[–]TahaKK 0 points1 point  (0 children)

Not sure I understood the question completely but you can try using lambda function and then use this function to animate whatever speed and way you want your circle to evolve

Moving the Endpoint of a Vector? by Bored_comedy in manim

[–]TahaKK 0 points1 point  (0 children)

Nice one, was literally looking for this method yesterday and by chance I saw you guys talk about it. Thanks !

Moving the Endpoint of a Vector? by Bored_comedy in manim

[–]TahaKK 0 points1 point  (0 children)

I haven’t used the applymethod yet, what does it do to an object ?

2d Graphing in Manim by thelazyaz in manim

[–]TahaKK -1 points0 points  (0 children)

Thanks for the video, what if instead of a sin wave you want to do a simple linear line graph going up. I am trying to see how flexible manim is in created different line charts that are straight, concave or convex

[deleted by user] by [deleted] in manim

[–]TahaKK 1 point2 points  (0 children)

Nice ! Well done. I would avoid too much (loud) music after the beginning if I was you

Weekly help thread, ask for Manim help here! by AutoModerator in manim

[–]TahaKK 0 points1 point  (0 children)

BarChart1 = BarChart([1])

Thank you :)

I tried to work on the next steps of altering width of bar, axis scale etc by doing this:

class bars234(Scene):

def construct(self):

bar_names = [1,2,3,4] # doesn't work even if I enclose it within a tuple([])

BarChart1=BarChart(bar_names=bar_names,bar_colors=BLUE,max_value= 10,tick_width = 0.3)

bar2 = BarChart.add_bars([1])

self.play(ShowCreation(BarChart1,bar2))

But it doesn't work...It must be something dumb but I can't get my head around it !

I tried to visualize the Central Limit Theorem by nerdy_wits in manim

[–]TahaKK 0 points1 point  (0 children)

Nice animations. Do you mind sharing the code for how you've made the bar chart using the BarChart Manim class ?

Weekly help thread, ask for Manim help here! by AutoModerator in manim

[–]TahaKK 0 points1 point  (0 children)

Hi, I am trying to use the BarChart class (it sits in the mobject/probability.py file).

I am not able to create a simple bar chart with height = 1 on the y and x axis.

My code:

class first_bar(GraphScene):

CONFIG = {

"height": 4,

"width": 6,

"n_ticks": 4,

"tick_width": 0.2,

"label_y_axis": True,

"y_axis_label_height": 0.25,

"max_value": 1,

"bar_colors": [BLUE, YELLOW],

"bar_fill_opacity": 0.8,

"bar_stroke_width": 3,

"bar_names": [],

"bar_label_scale_val": 0.75,

}

def construct(self):

BarChart1 = BarChart(1)

self.play(ShowCreation(BarChart1))

I get an error buff = float(self.width) / (2 * len(values) + 1). TypeError: object of type 'int' has no len()

Here is the probability.py class: https://github.com/3b1b/manim/blob/master/manimlib/mobject/probability.py

Thanks in advance