Skip to content
View pmusachio's full-sized avatar
🏠
Working from home
🏠
Working from home
Block or Report

Block or report pmusachio

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
pmusachio/README.md
class DataAnalyst:
    def __init__(self, name, role):
        self.name, self.role, self.skills, self.tools, self.experience = name, role, [], [], []

    def add_skill(self, skill): self.skills += [skill]
    def add_tool(self, tool): self.tools += [tool]
    def add_exp(self, experience): self.experience += [experience]
    def display_output(self):
        print(f"I'm {self.name}, {self.role}\n\nSkills:\n" + "\n".join(f"- {s}" for s in self.skills)
                                                           + "\n\nToolset:\n"
                                                           + "\n".join(f"- {t}" for t in self.tools)
                                                           + "\n\nProfessional Experience:\n"
                                                           + "\n".join(f"- {e}" for e in self.experience))

pmusachio = DataAnalyst("Paulo Musachio", "and Turn Data into Insights!")
[pmusachio.add_skill(skill)    for skill in ["Problem Solving", "Structured Thinking", "Exploratory Data Analysis", "Storytelling"]]
[pmusachio.add_tool(tool)      for tool in ["Python", "SQL", "Excel", "Statistics", "BI and Dashboard"]]
[pmusachio.add_exp(experience) for experience in ["Business Analyst @NUBANK - credit and risk",
                                                  "Exploring Data and Solving Problems in Industry for +10 years"]]

pmusachio.display_output()


RUN Code

I'm Paulo Musachio, and Turn Data into Insights!

Skills:

  • Problem Solving
  • Structured Thinking
  • Exploratory Data Analysis
  • Storytelling

Toolset:

  • Python
  • SQL
  • Excel
  • Statistics
  • BI and Dashboard

Profissional Experience:

  • Business Analyst @NUBANK - credit and risk
  • Exploring Data and Solving Problems in Industry for +10 years

Pinned

  1. controle_inadimplencia_emprestimos controle_inadimplencia_emprestimos Public

    Análise de Risco para reduzir inadimplência em empréstimos pessoais

  2. controle_fraudes controle_fraudes Public

  3. renovacao_seguros renovacao_seguros Public

    Analise das causas da queda nas renovações de seguros

  4. previsao_perdas_investimentos previsao_perdas_investimentos Public

    Aplicação do VaR para prever perdas futuras de ativos de uma carteira de investimentos

  5. cobranca cobranca Public