Author Archives: Dr. Darrin

close up photography of penguin on snow

T-Test with Pingouin

In this post, we will look at how to use the Pingouin package to calculate both t-test and ANOVA results. This post is not a post on statistics. Rather, we are focused on how to do t-test and ANOVA using Python. Therefore, the explanation of the statistics is not a part of this post.

We will be using the Duncan dataset from the pydataset package. In the code below, we are loading the needed libraries and we are also printing a portion of the Duncan dataset.

import pandas as pd

import pingouin
from pydataset import data
df=data("Duncan")
df.head()

The Duncan dataset is simple. It has stats on various jobs which include the type of job, income, education, and prestige. We want to compare job type with income. What we want to do is compare professional jobs (prof) with white-collar jobs (wc) and see if there is a difference. After doing this, we will compare all three job types (bc, wc, prof) using ANOVA.

T-Test

In the code below, we need to subset our data so that the professionals and white-collar workers are separate.

df_prof=df[df['type']=='prof']

df_wc=df[df['type']=='wc']

Now that this is complete, the code below is what is used for conducting the t-test. We are comparing professional income with white-collar income. The t-test is two-sided which means we are looking for any difference at all. Below are the results

pingouin.ttest(x=df_prof['income'],y=df_wc['income'],alternative="two-sided")

According to the p-value, there is no difference between the salaries of professionals when compared to white-collar workers. We will now move to ANOVA.

ANOVA

T-test only allows the user to compare two groups. ANOVA allows the user to compare multiple groups. We have three types of workers and not just two. Using ANOVA, we can compare all three at once. In addition, unlike the t-test, there is no data preparation needed in this example.

ad

The code below is relatively simple, we are using the ANOVA function from Pingouin. The first argument is for the data, the second indicates the dependent variable, and the between argument indicates the independent variable. Below is the code and output.

pingouin.anova(data=df,dv="income",between="type")

The value we are focused on is the p-unc or p-value. The results are significant. In other words, there is a difference between one of the comparisons. We don’t know which one will require us to do a pairwise comparison. Below are two different pairwise comparisons, one without an adjustment and one with an adjustment.

Pairwise Comparision No Adjustment

The first pairwise comparison is without an adjustment. The code below is mostly the same as for ANOVA. The main difference is we are using the pairwise_test function and there is an additional argument called padjust which is set to none. Below is the code and output.

pingouin.pairwise_tests(data=df,dv="income",between="type",padjust='none')

Focusing on the p-values (p-unc) again we can see that there is a difference between blue-collar workers and professionals and another difference between blue-collar workers and white-collar workers. However, there is no difference between professional and white-collar workers. Keep in mind that we already knew that there was no difference between professionals and white-collar workers from the t-test results.

Pairwise Comparision with Adjustment

In the code below, we have the same code but with a Bonferroni p-value adjustment. Adjustments become important when you have a large number of groups. The details of this are beyond the scope of this post. However, it is important to make this adjustment because otherwise, you could get false positives which could skew your results and interpretation. Below is the code and output.

pingouin.pairwise_tests(data=df,dv="income",between="type",padjust='bonf')

You may have noticed that the numbers are the same. That is because in our example we have a small number of groups. Therefore, this correction is not necessary for the data we are using.

Conclusion

The main purpose here was to show what the penguin package can do when it comes to t-tests and ANOVA. We could have calculated means for each group and other statistics. However, that was not the focus. Now, you know some of the tools that are available in the pingouin library.

people discuss about graphs and rates

Grant Proposal Evaluation

This post will explain the various parts of a grant proposal evaluation. It is important to remember that there is no single way that this is done. Rather, the information provided below gives a general summary of what is commonly expected. Below are commonly found sections in a grant proposal evaluation.

  • Purpose
  • Need
  • Operational plan
  • Personnel
  • Budget
  • Evaluation
  • Resources

Each of these parts of a proposal are explained below.

Alignment of Purpose

One component that grantors look at is the purpose of the grantee. In other words, why does the grantee exist? In addition, the grantor wants to know how the proposal’s objectives align with the organization’s purpose.

ad

For example, the purpose of a school is to provide education. Therefore, if a school is seeking funding it must support the purpose of the school which is to provide education. This means that a proposal that focuses on improving reading is probably more aligned with the purpose of education than seeking money for faculty vacations.

Extent of Need

The extent of needs identifies what exactly is the problem that the organization is facing. For those familiar with research it is similar to the statement of the problem. The organization must document not only anecdotal evidence but also from literature on the extent of the problem that is being faced in the local context.

The grantor is looking at the scope and focus of the need. Sometimes organizations try to do too much in one proposal. It is too difficult to define how focused the needs should be as this will vary from place to place. The point is to be aware that a proposal needs focus to obtain approval.

Operational Plan

The operational plan is similar to the methodology of a research paper. In this section, the organization explains the project design by sharing what resources will be used to achieve the objectives. There will also be an explanation of the milestones and an assessment of how logical they are.

Other aspects of this section include the timeline which must also be assessed for its reasonableness. In addition, various activities are shared along with how they help to achieve the objectives of the proposal. All this must be grounded and based on research.

In our school example, we might have the objective of improving reading comprehension by half a grade level over one academic year. This objective might be achieved by using grant money to purchase reading software that allows the kids to practice reading aloud and answering comprehension questions. The milestones might include purchasing the software, training the teachers to use it, monthly progress checks of the students, etc.

Personnel Quality

The personal quality section addresses whether or not the people within the organization have the skills needed to complete the project. If the skills are lacking, then the proposal must explain how the current group of people will be trained or how additional people will be hired.

It is also necessary to clearly define the responsibilities of all individuals involved in the project. Lastly, it is useful to include an estimate of how much time people will devote to the project.

Budget

The budget is mostly self-explanatory. It is important to make sure that the budget covers all expenses. Furthermore, the cost must be reasonable. Again, it is impossible to define reasonable but this must be kept in mind. Lastly, it is also important to include administrative costs in the budget as well.

Evaluation

All projects must be evaluated which means that there must be a way to define the success or failure of the endeavor. This involves collecting data throughout the project and using the data to determine if the objectives have been achieved. Therefore, the proposal must include means of data collection and analysis to assess the success of the project.

The evaluation must be valid or appropriate for the project. For example, if a school is trying to improve reading comprehension then the evaluation must measure the students’ reading comprehension. Asking the students if they believe their reading comprehension has improved is not as valid because it is measuring perceptions rather than reading comprehension directly.

Resource Sufficiency

Resource sufficiency is focused on the organization explaining their readiness to implement the program if they are given the money. In other words, do they have adequate facilities right now or do they need to improve them?

Another concern is equipment. For example, if a school wants to purchase reading software the next question is whether or not the school has enough computers to support the software. There is also a concern for the age of the computers and whether or not the computers can handle the software.

Conclusion

Writing a grant proposal is challenging yet exciting. It allows an organization to obtain funding to help people who are in need. For many, this is a satisfying experience. However, great care must be taken to make sure that the proposal is written in a way that it is accepted as a project worthy of funding.

black camera accessory lot

Common Components of a Grant Proposal

Writing grants is one of many ways to acquire funding to support an institution. In this post, we will look at some of the basic components that are a part of a grant proposal.

Abstract

The abstract of a grant proposal provides a general summary or a snapshot of the main points of the proposal. The abstract commonly includes such things as the objectives, the methods, and maybe the way the grant will be evaluated.

ad

A major question people often have about the abstract is when to write it. It really depends on how your mind works. Some prefer to write it at the beginning and use it to guide the rest of the writing. Others prefer to write the abstract at the end after they know what they wrote in the proposal.

Needs Statement

The needs statement is a section of a grant problem in which the writer shares the problem, the background of the problem, and the review of the literature. Essentially, the writer is trying to illustrate the context in which there is a need for the grant money.

The needs statement also shares how the problem will be addressed at least briefly. Sharing this information also implies the benefits of implementing whatever program the grantee is seeking funding for.

Plan of Operation

The plan of operation is the methodology of a grant proposal. In this section, the objectives may be shared again along with the methods. Methods are how the objectives are achieved in a grant proposal. For example, if a school is applying for a grant to improve reading comprehension, the method for doing this might be to train teachers in a different reading approach to help students.

Sometimes activities are also listed. These are various things that are done in order to facilitate the grant as well.

Personnel & Cost

Personnel is a list of the people who are involved in the performance of the grant. This can include people who already work at the school and or people who will be hired in order to do this.

The cost is self-explanatory. The grantors need to know how much money is needed and this information is provided here.

Evaluation

Evaluation explains how the performance of the grant will be determined. In this section, it is important to explain what is being evaluated. In addition, it is common to provide some sort of before and after metric. For example, what was the reading comprehension before the program was implemented is a question that can be addressed. this is one way to indicate the amount of change that is expected

It is also necessary to indicate who is responsible for completing the revelation along with the cost. If there are some sort of standards this can also help with determining the quality of the program as well.

Current Resources (significance

Current resources tell the grantor the tools available right now to achieve the objectives. In this section, it is also important to share why you should receive this money and why you are best qualified to achieve what you have stated in this proposal.

Assurances and Attachments

Assurances are statements that the grantee will abide by whatever rules and regulations are required of the grantor. This is common when applying for government grants. Attachments are miscellaneous documents that might be needed. These documents are context-dependent but can include budgets, timelines, and or letters.

Conclusion

Writing a grant proposal can seem like a daunting task. However, once you are familiar with some of the basic components it is a much less intimidating experience.

Understanding Academic Textbooks VIDEO

Reading academic textbooks is especially challenging for students. The challenge has more to do with bad habits than an inability to comprehend. In the video below, we will look at ways to understand textbooks.

ad
close up of fifty dollars banknotes

Grant Objectives

Objectives within the context of grants are used to try and explain the changes that the grant seekers want to make in their local context. The objectives defined what kind of change and how much change will take place. In other words, objectives are outcome-focused.

ad

It is important to not use objectives to explain how things will change. Defining how things will change is a method and not an objective. Objectives help readers see what will change by the completion of the project.

Below are the major components of grant objective(s)

  • Action statement
  • Performance measure(s)
  • Performance standard(s)
  • Timeline
  • Costs

Action Statement

The action statement contains a verb that clearly defines what is going to change. Below is an action statement.

To decrease the number of youth who commit crimes after release from the ABC drug program

This is a good start. The action statement clearly defines that we are trying to decrease how many kids commited crimes. However, alone, this objective lacks quantitative features that allow us to assess how successful the program is.

Performance Measure(s)

Performance measures are the variables that are measured to indicate success or failure. What these variables are can depend largely on the context of the grant. Below is our updated objective about the drug program.

To decrease the number of youth who commit crimes after release from the ABC drug program (action statement),as measured by the number of refferals received after completing the program (performance measure),

In the example above, we will know if the youth who commit crimes after release is going up or down based on the number of referrals that are received. Referrals are a way to document offenses that youths may have committed.

Performance Standard

Performance standards provide the objective with a clear quantitative way of defining what is good. For example, in grading 90% is an ‘A’ grade. Below is an example of a performance standard within the context of our objective

To decrease the number of youth who commit crimes after release from the ABC drug program (action statement), as measured by the number of refferals received after completing the program (performance measure), by at least 25% (performance standard).

Now we know how much referrals must decline in order to consider the program a success. How this number was determined is beyond the scope of this blog post. It is important that performance standards are thought out and researched so that they are challenging but achievable.

Timeline & Cost

The timeline provides a framework for how long it will take to see results. Cost provides an estimate of the amount of money that is needed. Below is our final objective

To decrease the number of youth who commit crimes after release from the ABC drug program (action statement), as measured by the number of refferals received after completing the program (performance measure), by at least 25% (performance standard) per year (timeline) at a cost of $15,000 a year (cost)

The timeline in which the performance standards are measured is yearly. The statement above is a great summary of the high points of funding this particular program.

Conclusion

The goal of a grant proposal is to communicate as clearly as possible. Naturally, everybody has a different opinion on what is clear. However, starting with a framework like the one above can at least help you get started and have a common reference point with your team. As needed, it will be important to modify the ideas here.

pexels-photo-3483098.jpeg

Grant Proposal Types

There are many different ways to categorize the type of grant a person may apply for. In this post, we will look at six types of grants or reasons to apply for grant funding. Understanding these basic categories is helpful for individuals who are struggling to determine how to articulate the motivation behind their desire for funding. The six types of grant purposes are

  • Demonstration
  • Replication
  • Research
  • Equipment
  • Consortia
  • International

Demonstration

A demonstration grant is a request to develop a change model. The motivation behind this type of grant is innovation. This grant is for determining what works and what does not work. If you desire to shake the status quo then your purpose may be demonstration.

Replication

Replication grants are focused on copying tried and true methods in a different context. In other, you see or experience some sort of successful innovation somewhere else and you want to bring it to your organization. One example would be technology in the classroom such as tablets. Using tablets is beneficial in many schools which leads to you wanting to bring tablets into your school as well.

Demonstration grants often lead to replication. The first grant-seekers develop an innovation that leads to others copying this success through replication.

Research

Research grants follow a more rigorous scientific process compared to other grants. They generally involve a control and experimental group. In other words, it’s not enough to show that the intervention benefits students through reporting performance metrics. It is also necessary that the students are doing better than a group of students who did not participate.

ad

Demonstration grants can be made into research grants by tightening the scientific standards of the intervention process. The scientific results solidify the wisdom of providing money to the grant-seekers. Even if the results are disappointing it at least indicates that the intervention should no longer be explored.

Equipment

Equipment grants are self-explanatory. These grants are developed to request money to purchase needed paraphernalia. Schools may ask to buy computers, microscopes, instruments, etc. Asking for money just to buy something is normally not enough. Instead, you want to purchase equipment to replicate the success of others, demonstrate something, and or do research. In other words, you might start with the goal of buying stuff but getting the grant approved will require a deeper purpose in many situations.

Consortia

Consortia can be any of the grant types above with the difference of working with others when obtaining the money. For example, several counties in a state in the United States might work together to obtain grant funding to help youth in a geographic area. Individually, each county does not have enough expertise or need for money. However, by working together and pooling resources they can provide a service to their region through grant funding.

International

International grants are grants that come from overseas. Multinational companies will often support the local community in which their businesses are located to develop local talent and garner goodwill. For example, Toyota might provide grants to schools in Thailand because Toyota has factories in Thailand. Support schools in Thailand to develop potential workers that will benefit Toyota in the future.

Conclusion

Of course, it is possible to think of other reasons or motivations for seeking grant funding. The purpose here was to provide a shortcut in this part of the decision-making process. Starting with one of the six examples above will help people who are new to this process.

photo of family having fun with soccer ball

Biologism

In most cultures, family plays a critical role not only in the lives of children but in maintaining the stability of society. By family, it is meant a traditional family of parents with their biological children. However, there are now questions as to whether genetics should play a role in the family at all.

Definition

Biologism is defined as a preference for biological inheritance. In the context of this post, this means the preference for one’s biological children. Critics of biologism state that this is outdated, old-fashioned, and even prejudical against other children who may not have a family.

There are additional critiques in terms of the patriarchal structure of the traditional home with a need to decenter this normative view for alternative approaches. in simple terms, male-led families with biological children should not be considered normal as it excludes those who cannot experience this. Some have even suggested that people should adopt rather than have their own children as this shows an altruistic nature that may be best for the larger society.

ad

There are several reasons why biologism is not supported. People have made comments that family structures have changed. Today, there are many non-traditional family structures and there are couples who cannot have children. In addition, even traditional means of having a family are challenged through such things as surrogacy, which makes it questionable in terms of who child the newborn baby is.

One question that is asked is should genetics even matter when somebody wants to be a parent. Generally, this innately matters and this is a major criticism. People against biologism believe that parents should love unconditionally regardless of genetics. The world should be inclusive no matter the relations between people. The goal is to ultimately move people beyond family to a concern for the planet. In other words, the planet should be equal to or more important than family relations. this leaves little room for the natural individualism and tribal connections people have had throughout history.

Not New

Despite how fascinating biologism is it might not be a new idea. Plato in his Republic spoke about the dangers of family. Essentially, Plato’s concern was that when people have families they will naturally put their family ahead of the state. When this happens strife and corruption are bound to take place as people fight for their families. By removing families, people should be focused on supporting the government instead. In other words, instead of people fighting other families Plato simply wanted governments to fight each other. Moving the level at which conflict occurs probably will not stop conflict from happening.

Of course, governments need children even if there are no families and Plato had a solution for this. People would “hook up” through a lottery system and any resulting babies would be raised by the state. Children would not know who their parents were and the parents would have no idea which children were theirs because there would be a lot of hooking up to the point that nobody knew who got which person pregnant. One caveat on this is that Plato’s idea was limited to the leadership of the state or what is called the elite. Regular people would in theory at least still have the ability to pair-bond and have children in a traditional sense. Fortunately, Plato’s ideas were never implemented nor is there any evidence that being single and detached from a family is a path to world peace,

Conclusion

The main concern with attacking traditional families and having children is that it is hard to find another approach that is common and equally successful if not superior. There are examples of societies that struggle when they deemphasized or removed families such as ancient Sparta and extreme forms of Communism. Families have been around for all of human history and as with anything involving people there are pros and cons. Just because bad things happen sometimes does not imply that the entire model should be thrown out. The ultimate point is that people should be able to choose for themselves whether they want to approach from a traditional or alternative means.

Facts vs Opinions VIDEO

Facts and opinions are critical components of reading. It is possible that most information that is shared is either a fact or opinion. Given how common they are it is also common for people to misunderstand the difference between these two concepts. The video below will try and provide an explanation of how facts and opinions are different and how they work together.

ad
person putting coin in a piggy bank

Grant writing Brainstorm

It is common for schools and other organizations to seek funding for various initiatives. One source of funding is grant seeking. When attempting to develop a grant proposal. Several concepts need to be included to develop a comprehensive proposal. The parts to be included are

  • Pain point
  • Answer
  • Commitment

When these three components are included it can help a team to attain the grant funding they are seeking. Before writing, it is critical to brainstorm various ways to address these three components before settling on the best choices for the proposal.

The Pain Point

The pain point comes from the context of the grantees. For example, this can be the classroom, the community, or some other aspect of society as a whole. The goal at this point is to be able to paint a picture of the issue that requires financial support to address. The illustration of this can be through the use of statistics, observations, stories, and literature.

ad

The goal here is to document the gap. By gap, it means the distance between where you are and where you want to be. Again, the distance between these two places will be filled through the judicious use of grant funding.

The Answer(s)

The answer(s) are the ways and strategies that will be employed upon receiving grant funding to address the needs and strengthen the system. For example, if a school is struggling with providing tablets to students the solution would be to purchase tablets using grant funding.

Remember that the goal right now is to brainstorm. This means several solutions are proposed until the team can agree on one. Also, remember that if you are applying for several different grants different solutions to the same problem might be more appealing to different grantors. Therefore, it is important to know your audience when developing grant proposals.

The Commitment

The commitment is often confusing for people. Essentially, the commitment is a part of the proposal in which the grant-seekers attempt to explain the extra effort the team will make when using the grant funds. Depending on the culture, demonstrating passion is important. The grantors often want to know that you are on fire to use this money to implement change and address needs.

Documenting one’s commitment can include expressing your eagerness to help students. You can speak on how you will make adjustments to your classroom and or teaching once the money is put to good use. Again, it is important to think of several different ways to address this before settling on the first idea that occurs in one’s head.

Attainment

If everything goes according to plan in mapping ideas in the first three parts, it is hopeful that the money will be granted. When this happens it is now possible to acquire the tools and or train the people to meet the needs of the context.

Conclusion

The information above provides a framework for getting started in the grant writing process. In summary, it is important to try and document the need, solution, and commitment you are making when seeking funding.

school bench with stationery in classroom

Juvenile Education Behind Bars

Education while a youth is in the juvenile justice system can be challenging. First, one has to consider who is in charge of the child’s education. Generally, the education of youth in the juvenile system is either the responsibility of the juvenile justice system, the education system of the state, or a combination of both. Technically, the youth has a right to a comparable education while in custody as they would receive while attending a public school. However, there are several obstacles to achieving this.

Examples of some of the challenges that are found in general within juvenile education are unqualified teachers, reduced hours of study, the inability to make up credits, and the student’s background. Teaching juveniles is a unique calling for the professional. Unfortunately, this is a call that often goes unheeded by teachers. Children in the public system can often be unbearable and so one can imagine going into a classroom full of gang members, murderers, and drug dealers. It is an unattractive opportunity which is why juvenile probation departments often have to hire unqualified adults.

ad

Another unique problem is that juvenile education often runs its schooling for 24 hours a week of study compared to 30 in public schools. What this means is that every week the child is in custody they are falling behind in their studies compared to peers. This becomes a serious problem when the youth is released.

A different challenge is the ability to make up credits. Youth who leave their school for weeks, months, or years can fall behind drastically in terms of acquiring credits. If this happens, the youth can become a dropout, which further disadvantages them in the working world.

The youth themselves bring unique needs. Often, they are special needs and such needs are hard to support in a public school setting let alone while in the juvenile justice system. In addition, juvenile youth are also already behind academically when they are placed in the system. When this is combined with the factors mentioned above it is safe to say that the educational experience is not the best situation a child wants to be in as a student.

There are several places a youth is sent when in custody and we will look at each below.

Juvenile Detention Center

A child who is either accused of a crime or is waiting to be transferred to another facility is often held in what is called detention. The challenge with education in the detention setting is the transitory nature of this experience. On average, a child is in detention for about 30 days. Therefore, you can see the difficulty of providing young people with a comparable education to what they would receive in public school when they are only going to be there for about one month.

In public school, the first few days of the year are spent on assessments to see where the child is academically. Following this, it takes another week or two to lay down classroom rules and procedures in a consistent manner. The point is that, unfortunately, there is minimal learning for the first 2 or 3 weeks of school in the best setting for a child. For a child in juvenile detention, by the time this initial experience is over, there may be a week or two left for learning. While all this is happening, the child is away from home, worried about their freedom, while navigating the stress of being confined to a cell.

While all this is taking place, other students are coming and going as well, which is additional chaos to the experience. Every student is at a different place in this timeline, which is a serious frustration for the teacher and all students involved. Furthermore, some kids may only be there for a few days, so they never really had an opportunity to learn while in juvenile detention.

Alternative Education

Another form of education that students face while being in the Juvenile Justice system is alternative education. Alternative education is for kids who have been suspended from school and or have been found guilty of a lesser offense that does not require confinement. Examples can include drug use or possession of a weapon.

Although it varies from state to state, students are generally at alternative education in blocks of semester suspension(s) or maybe 90 days. However, the challenge is that all the students do not come at the beginning of a semester but can come anytime during the school year. Due to the mandatory minimum length of stay, the educational experience is often much more stable compared to detention centers.

Another concern with alternative education is if the youth continues to cause problems. For example, if they commit another offense, which is possible because they do have a large amount of freedom, they could be placed in detention and moved to a facility. The longer the length of stay is generally better but there is a distinct risk of youth failure due to poor behavior as well.

Residential Facilities

Another place where a youth is educated while in the juvenile justice system is at the actual residential facility they are sent to after their stay in detention. The type of facility depends on the crime that was committed but what they all have in common is that the crime the youth was found guilty of was so serious that the child could no longer stay at home.

The length of stay here can vary. If the sentence was indeterminate the length of stay depends on the youth meeting certain requirements. If the sentence was determinate the youth must stay there for a certain length of time no matter what. As with the other examples, you have youth who are going to be there longer than what is expected in detention centers, but you have the continuous probability of turnover within the classroom setting. Students are coming and going all the time since they don’t all begin their sentence at the same time.

One advantage of the residential facilities is that it is designed to house students long-term. Therefore, it is common to have vocational training and other interesting programs available for youth. In addition, the students have more academic support because they are in the same place for a longer period.

Conclusion

The reality is that the juvenile justice system was developed first to deal with youth who have had missteps with the law. However, it quickly became apparent that children in this system also need an education. It has been difficult to provide this basic need due to the transitory nature of youth as they traverse this system.

mad formal executive man yelling at camera

Sanism

Mad studies and Sansim are a form of Marxism that looks at power dynamics between those who are considered “normal” mentally and those who are not. As with all other forms of critical studies, Mad Studies wants to overturn the status quo for an untested utopia that has not been proven to solve any of the existing injustices.

Mad Studies

Mad studies is a field of inquiry that rejects how mental health has been medicalized and has become a tool of the pharmaceutical industry. Madness should not be pathologized as there should not be any norms for mental health. Proponents of this point of view call themselves “mad.”

ad

Mad proponents are convinced that there is a need to challenge the idea that people experiencing mental distress need to regulate or control their feelings. One of the reasons they make this claim is that people who do not fall within societal norms for acceptable mental well-being can be discriminated against because of these fall norms. For example, people may lose job opportunities, lose a job they already have, and face other obstacles to success because of the oppression that comes with having what others consider to be mental health issues. In addition, people who are considered mad are also often labeled incompetent and or dangerous.

Sanism

The act of discriminating against people because of their mental well-being is called sanism. When individuals are threatened with sanism they will try and hide their mental illness. Other coping mechanisms can include self-criticism in an attempt to place blame on one’s self. Mad studies are focused on challenging the status quo in regard to mental health.

Mad studies criticize several concepts that are a part of Western culture. Neoliberalism is one frequent target and neoliberalism is an economic and social focus on the the individual and the expectation of personal responsibility. As Mad studies is a child of Marxism means that it will have issues with economic policies focused on the individual. Another issue is with personal responsibility.

Mad studies do not support the idea that people should have to control their emotions and behavior at all times. If a person is having a meltdown at work the people around them should be patient and understanding of this challenge. To go one step further, some proponents of Mad studies believe that self-regulation is harmful.

Other supporters of Mad people have stated that Mad people should be in the workplace to provide mental diversity. In other words, the workplace should include a wide variety of people with different types of mental health from people who can control their emotions and reason to people who have no control of themselves and cannot reason. This is considered a balanced workplace for Mad people.

Conclusion

It is a trying situation for anybody who is experiencing mental health issues. However, how well such people can be included in society depends on the situation. It is unwise to bar Mad people from society completely as it is equally unwise to include them completely without examining the circumstances.


child with woman holding map

Homeschooling and Government Funding

Homeschooling has grown tremendously over the years. From a fringe concept to over 6% of the school-aged children in the US. What makes this even more surprising is that home school was illegal in some parts of the US up until the late 1980s.

Homeschooling also takes many different forms. It can take the traditional form of a single family educating their own children. Other ways of providing one’s children with an education can include micro-schools where several families may come together to share resources in the education of their children. The benefit of micro-schools is that by sharing resources it is easier to ensure all academic subjects are covered adequately, which can be difficult to achieve when working alone as a single family. However it is done, homeschooling provides an alternative route to providing for the needs of children.

Motivations for Homeschooling

The motivation for homeschooling naturally varies from family to family. Some of the common reasons can include concerns with safety. The concern with safety is a legitimate worry with all of the school shootings that have happened in the past and the fact that bullying is still a problem in schools. Another reason is the poor academic quality of many schools. It is hard to label all schools as bad but it is reasonable to state that many schools do struggle with academic rigor.

ad

Another major reason for homeschooling for some families is the opportunity to pass on family and religious values. Schools tend to lean to the left when it comes to values and politics and often try to pull the students in this direction. For some families, this is not acceptable as the values of the schools and government conflict with traditional and or religious values. For this reason, some parents have decided it is better to educate their children at home in order to avoid the confusion of different messages from different sources reaching their children.

Money and the Government

With the growth of homeschooling has also seen a growth in school choice in general. This has led several states to develop some sort of education savings plan or account that can be used to support the education of a child regardless of how they are educated. Some examples of how this money is used are for tutoring, special needs, tuition for private schools, and materials for homeschooling.

The dilemma is that money from the government often comes with requirements and stipulations for the sake of accountability, which is frustrating for homeschool parents as they educate their children often to be free of government interference. This has led some families to reject this money in order to maintain independence.

Rejecting the money is within the rights of parents, however, the laws in some states did not originally allow for different types of accommodation for students who are eligible for this money. In other words, all students who could receive this money were classified as the same, which means that if there is any kind of reporting or government expectation then all students would have to comply whether they took the money or not.

To solve this problem, many states have enacted clarification to allow for families that do not take the money to not have to comply with any expectations that come with families that do take the money. In other words, there is now a clear distinction in the law between students who receive money from the government for educational purposes and those who do not.

Conclusion

The growth of homeschooling is an excellent form of alternative education for many students and families. However, sometimes the government means well but can potentially make life difficult for families. Therefore, parents must stay vigilante in order to prevent the loss of their freedom to educate their children

Finding the Supporting Details in Reading VIDEO

The video below provides an explanation of how to find the supporting details in a reading.

ad

Finding the Main Idea of a Reading VIDEO

The video below provides an explanation of how to find the main idea of a reading passage. The main idea is a key concept for understanding text.

ad

Finding the Topic for reading VIDEO

One of the first steps in reading comprehension is to know what the topic of the reading is. In other words, what is the author writing about is one of the first things a reader should try to uncover. It doesn’t matter if the reader understands they still need to know what subject the author is writing about. The video below provides tips on uncovering the topic of a reading.

ad
shallow focus photography of black ship

Import Simple Files into Python

In this post we will be using Python to import files. Importing a text file is rather easy into Python. We will look at several different examples and file types in this post.

Importing a Text File

Importing a text file is often done in Python. To do this see the code below.

file=open('Corr.txt',mode='r')
text=file.read()
file.close()
print(text)
$r
              ACmean    CLMean   SFIMean EnrichMean
ACmean     1.0000000 0.4386146 0.2463862  0.5758464
CLMean     0.4386146 1.0000000 0.2874991  0.5730721
SFIMean    0.2463862 0.2874991 1.0000000  0.2076200
EnrichMean 0.5758464 0.5730721 0.2076200  1.0000000

$n
           ACmean CLMean SFIMean EnrichMean
ACmean        172    172     172        172
CLMean        172    172     172        172
SFIMean       172    172     172        172
EnrichMean    172    172     172        172

$P
                 ACmean       CLMean      SFIMean   EnrichMean
ACmean               NA 1.763762e-09 0.0011214521 0.000000e+00
CLMean     1.763762e-09           NA 0.0001312634 2.220446e-16
SFIMean    1.121452e-03 1.312634e-04           NA 6.277935e-03
EnrichMean 0.000000e+00 2.220446e-16 0.0062779348           NA

attr(,"class")
[1] "rcorr"

In order to load the text file we used the open() function to open the file in the working directory. Next, we indicated the mode as ‘r’ which means ‘read’. Everything that was just mentioned was saved into an object called ‘file’. Then we use the read() function on the object called ‘file’ and save all this in a new object called ‘text’. The next step involves using the close() function in order to complete the process. The last step involves printing the content of the text object using print().

Below is a way to complete this process faster.

with open('Corr.txt','r') as file:
    print(file.read())

$r
              ACmean    CLMean   SFIMean EnrichMean
ACmean     1.0000000 0.4386146 0.2463862  0.5758464
CLMean     0.4386146 1.0000000 0.2874991  0.5730721
SFIMean    0.2463862 0.2874991 1.0000000  0.2076200
EnrichMean 0.5758464 0.5730721 0.2076200  1.0000000

$n
           ACmean CLMean SFIMean EnrichMean
ACmean        172    172     172        172
CLMean        172    172     172        172
SFIMean       172    172     172        172
EnrichMean    172    172     172        172

$P
                 ACmean       CLMean      SFIMean   EnrichMean
ACmean               NA 1.763762e-09 0.0011214521 0.000000e+00
CLMean     1.763762e-09           NA 0.0001312634 2.220446e-16
SFIMean    1.121452e-03 1.312634e-04           NA 6.277935e-03
EnrichMean 0.000000e+00 2.220446e-16 0.0062779348           NA

attr(,"class")
[1] "rcorr"
ad

Using the ‘with’ approach is much faster and simpler. THe content of the open() function is the same while we save its as “file” by writing this after the open() function rather than before. Lastly, we print the file and use the read() function together.

Import with Numpy

Naturally, there is more than one way to import data. The example below involve the use of the NumPy library. This approach is used in particular for dealing with numerical data that might be saved as a texr file. Below is an example of how to do this.

import numpy as np
text=np.loadtxt('sample.txt', delimiter=',')
print(text)

[[1. 2. 3. 4.]
 [5. 6. 7. 8.]
 [9. 0. 1. 2.]]

We begin by importing the numpy librar as np. Next, we create an object called ‘text’ and use the loadtxt() function to load a text file called ‘sample’. The argument ‘delimiter’ is used to tell numpy how the numbers are separated in the file. Lastly, we print the ‘text’ object as an array.

Import with Pandas

Pandas is another way to import data. For our example, we will look at how to import csv files. Below is the code for how to complete this.

import pandas as pd
data=pd.read_csv('sample.csv')
data.head()

In line 1 of the code we load the pandas library as ‘pd’. In line 2, we use the read_csv() function to load our data into the ‘data’ object. Lastly, we use head() to take a peek at the first few lines of data.

Conclusion

With this information, you now possess some basic knowledge on how to get data into Python for the purpose of being able to manipulate it. In a future post, we will look at other ways and means of importing data into Python.

Context Clues for Reading VIDEO

Context clues are used for determining the meaning of unknown words. The video below explains five common ways to do this along with examples.

ad
faceless multiethnic students walking out of subway train

Cultural Relevant Pedagogy

This post is a summary of the article “Toward a Theory of Culturally Relevant Pedagogy” by Gloria Ladson-Billings. One of the major contributions of this paper is attempting to define examples of culturally relevant pedagogy in the classroom of several teachers.

Problem

The problem addressed in this paper is multifaceted but can be summarized as follows. The author claims that success is defined in school for minorities by adapting their behavior to the expectations of the teacher and majority culture. For the author, this is poorly defined as meritocracy. The concern with adapting culturally for minority students is that they are not being affirmed in their own culture.

ad

Galdson-Billings continues by stating that schools are guilty of reproducing the current system and thus reproducing the inequities of the existing system. This is a common critical pedagogy critique of the existing educational system. Therefore, students need to develop an awareness of the inequity in school, which calls for the development of a critical perspective or critical consciousness as explained by Friere.

With this background, the author shares the following proposition when she states that pedagogical practice needs a theoretical model that deals with student achievement and the affirmation of minority students’ cultural identity while also developing a critical perspective for challenging inequities in school.

The proposition above addresses the following problems

  1. Student achievement of minority students
  2.  Cultural affirmation of minority students
  3.  Development of a critical perspective
  4.  The need to challenge inequities in school

To put it simply, the other is looking for evidence of the propositions mentioned above in her research.

Questions

Galdson-BIllings lays out the following questions that she wants to answer in this paper.

  1. What is student success?
  2.  How can academic success and culture complement each other in settings where student alienation characterizes the school experience?
  3.  How can pedagogy promote student success that critically engages larger social structural issues?
  4.  What are the implications for teacher preparation generated by this pedagogy?

Notice in question two the use of the word “alienation.” Alineation is a term commonly used in Marxist literature to mean a feeling of estrangement or being marginalized. There is an assumption in this question that students are feeling alienation even before any data is collected.

In question three, the word “critical” is used. Again, the word “critical” has a different meaning and it means to question and oppose power dynamics. In this question, the author is looking for a specific predetermined answer rather than exploring the data

Methodology

Gladson-Billings collected data from 8 teachers who were considered to be excellent teachers. The method of data collection was done through participant observation in which the author was actively involved in the classes that she visited.

There were four phases to the data collection.

  1. Ethnographic interview of the 8 teachers.
  2.  Participant observation of the teacher’s teachings 3 days a week for 2 years.
  3.  Videotaping of the teachers (this was in the 1990’s)
  4.  Teachers observing each other videotaped teaching.

There was no direct explanation of how the data was analyzed but it can be assumed that this was a qualitative study and the result section is focused on summaries and the occasional vignette to provide support for propositions the other shares.

Results

Among the findings, the author shares that students struggle to achieve academic excellence while showing cultural competence. This may be due in part to who has the power to define academic excellence, which the author thinks is unjustly given to the majority culture.

Another major finding is that teachers must help students to understand and critique social inequities. The need to challenge social inequities goes back to the critical pedagogy viewpoint of the paper. Students must become activists to challenge the existing system. The author then shares several examples of students becoming involved in community activism through the support of their teachers.

The author then shares three propositions that emerged from her research.

  1. The culturally relevant teacher’s conception of self and others
  2.  How culturally relevant teachers structure social relations.
  3.  Culturally relevant teacher’s conceptions of knowledge.

Proposition one stresses the beliefs that the teachers of the study had about students. These excellent teachers believed that all students could succeed, that teaching is an art, that they were members of the community, and that teaching was a way to give back to the community.

Proposition two is focused on social relations. Excellent teachers believed that social relations should be fluid, show connectedness, develop a community of learners, and focus on collaboration and responsibility towards each other all for critical consciousness. On the last point, the relations are developed to be aware of injustices in terms of power dynamics another key part of Marxist thought.

Proposition three addresses conceptions of knowledge or epistemology among excellent teachers. For these teachers, knowledge is not static, which implies it is relative and not fixed, teachers need to be passionate about learning and knowledge, scaffolding is necessary, and there should be multiple forms of assessment.

According to the author, culturally relevant teachers are teachers who demonstrate these propositions in their classes. The goal is to be culturally relevant for developing a critical perspective in the students.

Conclusion

For someone who is looking to understand what critical relevant teaching is this article is an excellent source. Not only is it defined but the author can provide examples from actual teachers in the classroom. Therefore, anybody can implement these examples and be able to show that they are a culturally relevant teacher.

Types of Reading for ESL Students VIDEO

ESL students all read at different levels. The video below describes different types of reading levels for ESL students.

ad
grayscale photo of protesters on a street

Critical Race Theory in Education

This post will provide a summary of the the article “Toward a Critical Race Theory of Education” written by Gloria Ladson-Billings and William F. Tate IV. This paper is significant in that it proposes the idea of considering critical race theory as a key component of education.

ad

The authors assume that anybody who reads this article is already aware of what critical race theory is. In short, critical race theory suggests that the world should be seen through a lens of power as it pertains to race. What this means is that those who have power use race to hold down and oppress those who are of a different race. This is most commonly used in the context of whites vs. blacks in the US.

In terms of the actual article itself, the authors clearly share the following propositions as the main ideas they will address in the paper.

  1. Race continues to be significant in the US
  2.  US society is based on property rights rather than human rights
  3.  The intersection of race and property creates an analytical tool for understanding inequity

Proposition One

The first proposition is almost an axiom of someone who supports the Critical Race Theory view (CRT). Race will always be a major issue in the US because CRT believes that essentially everything begins and ends with a race dynamic. Almost all actions of injustice for blacks and justice for whites are connected with the dynamic of power differences based on race.

What is unique to the first proposition in comparison to the others is that they include several meta-propositions as listed below.

  • Race is un-theorized
  •  Class and gender cannot explain all the differences in school experience and performance

What the authors mean by race being un-theorized is that much of the ideas of Marxism, which laid the foundation for CRT, were developed by White Marxists who were focused on class rather than race and that they oversimplified race. Therefore, theorizing race involves adding nuance to Marxist thought in relation to CRT. For the authors, race is the main construct to consider when explaining inequity. To simplify, theorizing race means explaining the role of race in education in relation to experiences and performance of minority students primarily black students.

The second meta-proposition of the authors is that class and gender cannot explain all the differences in the academic performance of students. The authors support this point with studies about differences in academic performance and behavior when controlling for class and gender. Race must be a part of the explanation in terms of inequity in the educational experiences of students.

Proposition Two

The second proposition the authors share is that the US is based on property rights rather than human rights. The authors support this point with the reality that in the days of the early republic, only land-owning capitalists had full participation in society. They follow this with the point that a government that is focused on property rights is not concerned with the human rights of individuals since not every singe person holds property.

Governments tend to be pragmatic in that the focus on property rights is because property can be taxed. It’s hard to hide land and other large resources so the government protects property in exchange for protection of the property. The rich have generally paid more in taxes because they have more wealth that they develop from their property (or capital if this term is preferred).

The poor are hard to track and often have a smaller obligation in terms of taxes. To tie property rights to education the authors make the next point that places where there is better property have better schools because these schools get more money to spend. For the authors, this is a form of inequity. In other words, the areas of town with more money should share this money with other areas of town that have less. Better property does not imply a better education because all people are equal.

Proposition Three

The third proposition is not stated directly but the thrust of this proposition is a conclusion based on the previous two. Proposition three uses the idea from proposition one about race not being theorized and proposition two about property rights to state that the cause of poverty (lack of property) combined with poor schooling (lack of nice property) among blacks is a form of structural racism. Structural racism is a system within society that fosters racial discrimination.

From here the authors present several interesting ideas. The first is that white privilege is a form of property that is transferable, can be enjoyed, affects reputation, and can be excluded. In terms of transfer it is meant that whiteness can be transferred by having people accept certain norms (acting white). For enjoyment, it is meant that get to enjoy certain advantages in their education (better teachers, etc.). For reputation, things identified as nonwhite are stigmatized. Lastly, for exclusion, resegregation through such things as tracking or gifted programs is also a form of whiteness as property because these programs generally exclude black students according-to the authors.

Multicultural Paradigm

The authors then pivot to a light criticism of multicultural education. Multicultural education is the idea of getting all cultures to mutually respect each other. No culture is superior to any other culture. The authors critique multicultural education for not ensuring justice and becoming part of the existing system. The authors call for a radical critique of the status quo and thus of multicultural education. An incremental approach is never going to work for bringing change. CRT supporters generally disdain the current system and prefer radical change to incremental approaches to solving what they consider are systemic problems.

The authors go on to state that multiculturalism is attempting to please everybody, which is a futile effort. They then state that they are believers in the philosophy of Marcus Garvey. Garvey is famous in part for attempting to move African Americans back to Africa unsuccessfully.

Conclusion

Ladsen-Billlings and Tate provide an excellent introduction to CRT with their emphasis on the theorizing race within the classroom, pointing their views on the focus on property in a capitalist society, and showing how property and race combined can lead to inequality. The authors also state the need for radical change and call on current efforts through multicultural education is be inadequate. Whether this is right or wrong is left to the reader.

photo of man touching his head

Business vs Analytical Questions

A major challenge for a data analyst is working within an organization with people who do not have an analytical background. The reason this is difficult is that the data analyst has to try and determine what the audience of his analysis wants him to analyze. This is further complicated when the consumers of the results are not able to fully articulate what they want to know and lean on their intuition and understanding of the context. The analyst who lacks this shared experience is left to figure out what to do.

ad

The wording and language used by non-data and data people to develop questions are similar but different. To be fair, it is not the responsibility of the non-analyst to understand how to form analytical questions. However, it is the data analyst’s responsibility to speak the language of the non-data people and to translate the business questions that are provided into analytical questions.

In this post, we will look at business and analytical questions and how they are shaped and formed.

Definitions

Business questions are questions developed by non-technical individuals within an organization. These questions are derived from the business goals of the organization. The goals of the business or organization are often targets that need to be met over a period of time. An example of an organizational goal would be

To reduce turnover by 10% over a year

The business question that could be extracted from this goal could be

What programs should we use to reduce turnover?

The question above is a business or organizational question. However, this is not a question that a data analyst could answer in its current format. Whereas business questions are broad and open-ended analytical questions are specific. At times, it may be necessary to develop several analytical questions to answer one business question due to the need for specificity. One way to reword the business question above for data analysis is shown below.

Which if any of the turnover reduction programs implemented over the past year were able to reduce turnover by at least 10% in the sample population?

There are several assumptions in this question that were not built into the original business question

  • There are several turnover reduction programs
  •  The sample population was broken into various groups and each group experienced one type of turnover reduction program
  •  Each program was given one year in length and was run concurrently
  •  There was a way to collect data in a scientific manner
  •  People were appropriately trained to implement the various turnover reduction programs
  •  etc.

As you can see this can truly get complicated. The data analyst may not only focus on the analysis but may be called upon to shape how data will also be collected and or the research design. As mentioned in the introduction, business experts often know what they want but are not able to articulate it clearly and they struggle with developing the linear process that is needed to collect and analyze the data.

Often, the data analyst’s challenge may be a lack of experience in the field in which they have to analyze data. For example, an individual with a background in education may have to analyze health data. The analytical techniques are the same in terms of the data but a lack of knowledge in the context of health care can make it difficult to get things done. The real problem is that the business people know the context but not the data analysis while the data analysis knows the numbers but not the context.

Conclusion

The primary difference between a business and an analytical question is the amount of detail. A business question is a broad overview that may not articulate all that is needed to develop an answer. An analytical question is detail-oriented and captures all that is needed in terms of obtaining an answer using whatever statistical techniques are needed. Business experts have contextual knowledge but may not have analytical knowledge while the data analyst is burdened to have both contextual knowledge and analytical expertise to shape the questions so that they are answerable.

monochrome photo of resist signage

Generative Themes

A generative theme is a pedagogical tool developed by Paulo Freire. Defining anything that Friere said or did is always tricky. For our purposes, a generative theme is an idea or concept that is relevant to the student’s life that evokes strong emotional responses. Generally, the emotional response is negative.

The reason for evoking a negative emotional response is to try and awaken the student to the injustice of whatever is being discussed. Friere was a huge proponent of awakening political literacy in students. By political literacy, we mean being aware of the oppression that the student is living through and realizing a need to resist those with power through revolution. If generative themes are used to evoke positive feelings it will probably not motivate the students to demand change.

In the Classroom

It is the teacher’s job to discover relevant generative themes for the students. There are several ways this can be achieved. Examples can include surveys, dialog, and exposure to provocative material. Focusing on proactive material, there has been a large amount of controversy about sexuality in schools and its appropriateness.

ad

One motivation for pushing the boundaries in this area is that exposure to controversial sexuality could trigger strong emotions within students about what is okay and acceptable. Teachers can use this to discuss questioning boundaries and fighting for people who are different. Without the shock of sexual material (the generative theme), there would be no emotional engagement of the student and thus less engagement in change.

Another way in which generative themes are inserted into a classroom is by removing Western-centric material for non-Western ideas. The process of doing this is known as decolonization. An example might be deemphasizing the work of European male scientists for female scientists and scientists from other parts of the world. The focus in doing this would often be how these other scientists had to fight discrimination to achieve what they did. Showing the students the injustice these scientists faced could serve as a generative theme to develop strong negative emotional responses, which lead to a desire for change.

Generative themes must always be taken from the students’ lives in order to engage them. This is one reason for the push for culturally relevant teaching. Taking examples from the students’ lives can serve as another mechanism for moving the students to push for change. For example, students might be asked how would it feel to be a slave before the Civil War. This might be followed by how would it feel to be a slave owner.

From slavery, the conversation might move to the present day where some of the descendants of slaves and slaveowners often live different lives because of their past. A final question would ask the students if they think it is fair and just that the system treats people differently based on their past. In all of these questions, the focus was always on feelings.

Why Feelings

The reason for the focus on feelings is to trigger emotional engagement. As the students ponder these questions they will probably feel negative emotions, such as anger or guilt, as they relive in their minds these experiences. The anger and guilt they feel are then used by the teacher to show them how they need to fight oppression. The oppressed student will use their anger for change while the students who are the oppressors will use their guilt to push for change.

It is important to note that nothing the students experienced was real in terms that it happened to them or did they do it to someone else. However, the emotions make the injustice real for the students even though it may not have taken place in their own lives. It is similar to going to a movie on racism and leaving the theater angry or guilty because of what you saw in the movie. However, if the injustice has been experienced in the student’s life it makes it all the more powerful when blame is placed on a structure of power.

To be fair, Friere used generative themes to teach reading. For example, if through dialog the generative theme of poverty was discovered. The teacher is supposed to teach the students how to spell and read the word poverty. However, students are often so distracted by the emotional strange of discovery injustice that academic skill development is secondary to awakening a need for action.

Conclusion

A major problem with generative themes is their emotional focus. Students do not necessarily develop thinking skills in this context. Instead, they learn to express strong emotions, which generally should be controlled. In addition, fighting for justice is so attractive for teachers that it is pushing out the development of actual skills in an academic setting. If students feel the system is unjust and they do not have any competency in basic literacy. The only kind of employment they could do would be community activism and protesting, which when overdone is not necessarily beneficial to society.

Authentic Listening Task for ESL Students

Authentic tasks are meant to be as realistic as possible. The video below provide several examples of listening tasks that are authentic for ESL students.

ad
person wearing adidas hoodie during daytime

De-Identification of Data

Removing identifying information in data is a self-explanatory term. The purpose of removing identification from data is to protect the people who the data came from. These people can be customers, employees, or other groups for which data has been collected. De-identification can also be performed for compliance reasons and or as a security measure.

People who are responsible for privacy and or data governance in their organization need to be familiar with ways to de-identify data. Therefore, in this post, we will look at two commonly used techniques for removing identification from data. These two methods are.

  • Pseudonymization
  •  Anonymization

Pseudonymization

A pseudonym is a false name. Therefore, in the context of data, pseudonymization is the process of giving false names to data that can help identify somebody. It is similar to having a secret identity in the superhero world. For example, Peter Parker and Spider-Man are the same person but most people do not know this because of the use of a false name.

ad

Practical ways to achieve pseudonymization with data can include changing text to numbers such as names. Removing information such as date of birth and or removing parts of data in a column such as keeping only the last four digits of a person’s social security number.

One advantage, or perhaps disadvantage, of pseudonymization is that the data can be returned to its original state. This is because whoever altered the data used the same rules for every change they made. The downside to this is if someone else can determine how the data was altered it would allow them to see the original data which could be used to identify someone.

Anonymization

Anonymous means no name. Therefore, anonymization is the process of removing all personal identifying information in a dataset. When this is done the process is not reversible and thus there is no way to determine the identity of the people in the dataset.

An example of anonymization would be to completely remove the names of people in a dataset along with other information such as date of birth and the total removal of phone numbers. Anonymization provides heightened protection but at the loss that even the people who anonymized the data have no idea who the original people are. Whether this is good or bad depends on the context in which the data will be used.

There are industry-specific ways of achieving either pseudonymization or anonymization. Examples include the fields of health care and education. However, at the macro level, all industries are using some combination of pseudonymization and anonymization.

Conclusion

Data privacy is a major concern in the world today. The concern with privacy needs to also be balanced with the need to analyze data for insights. For this reason, many have turned to various ways to de-identify data to support the conflicting concerns of privacy with analysis.

Intensive Listening Activities VIDEO

Intensive listening is one of many ways to develop listening skills in ESL students. The video below provides several different activities for listening in the language learning classroom.

ad
security logo

Security Models

Protecting data is a major concern of organizations today. With so many people sharing so much about themselves online organizations must be careful and aware of ways to secure the data that they have. In this post, we will look at two different security models that are commonly deployed today. These two models are the CIA Triad and the DIE model. Either of these models is commonly used when developing a data governance plan for an organization.

CIA Triad

There are several different models used by organizations to examine data privacy. One example is the CIA triad. The CIA triad provides 3 concepts that must be kept in mind when attempting to protect the privacy of users.

“C” stands for confidentiality, in other words, organizations must be sure that the data they have cannot be accessed by others. The “I” stands for integrity. Integrity involves ensuring that data is not altered or changed without authorization. If the data is manipulated without user knowledge any insights derived from the data would be considered questionable.

ad

The last letter in the CIA triad is “A.” The letter “A” stands for availability. Availability means that the data system is operational and can access the data. In other words, the security system cannot be so complex that nobody can get the data that is being protected.

DIE Model

Another security model that is commonly is the DIE model. DIE stands for distributed, immutable, and ephemeral. Distributed means that data should not be limited to one source in case of failures. For example, having multiple copies of data in multiple sources.

The “I” in DIE stands for immutable. Immutable in this context means that the infrastructure being used is replaceable without data loss whenever there is a problem. Again this relates to the idea of having multiple sources of the same data. Lastly, the “E” in DIE stands for ephemeral. Ephemeral means that if there is a data problem that it does not take a long time to get back up and running in the event of a data failure or breach.

Compare and Contrast

There are some similarities and differences between the CIA triad and DIE. Both are focused on data being available. For the CIA this is the “A” and for DIE this is the “I.” In addition, both models are focused on protecting data in terms of preventing changes and this is covered in the letter “I” in both models.

However, there are also some differences. The DIE model is considered much more scalable than the CIA triad. As such, smaller organizations may lean towards the CIA triad while larger organizations may lean towards the DIE model. Furthermore, DIE is focused on hardware and infrastructure while CIA is more data-focused.

Conclusion

Every model has its strengths and weaknesses. The best model depends on the needs of the organization. In either case, the CIA Triad or the DIE model can guide an organization that is looking for a roadmap for securing its data.

Levels of Reading Comprehension VIDEO

Reading comprehension is one of the main purposes of education. In the video below, the three main levels of reading comprehension are shared and discussed.

ad
blue white orange and brown container van

Data Classification

Data classification is a critical part of many company’s strategy for protecting data. In this post, we will look at data classification in terms of its purpose, types, and steps for the implementation of this process.

Common Purposes

The main reason for data classification is to ensure confidentiality. Many data systems have personally identifiable information such as credit cards, social security numbers, and more. Such information needs to be protected and the only way to know it needs to be protected is through classifying it as something that must be shielded.

Availability is another reason for data classification. Through classifying data, it helps a data governance team to know who should have access to what kinds of data. For example, the manager may have full access to all data while the assistant may only have access to data that is not considered confidential. Classification helps in determining access to data.

ad

Data integrity is yet another reason. By ensuring that the data represent what it claims to be assessing what the data stands for. If data is classified as sensitive but does not contain any sensitive information it indicates a problem.

Data Types

There are also several different ways data can be classified. Data can be public which is generally not protected as it is accessible to all for the most part. Data can also be personal which is data that can be used to identify individuals and is usually strictly protected. Data can also be classified as sensitive which means data that requires access authorization.

Lastly, there is confidential information which is data that may have legal restrictions associated with it. The examples above are common forms of data classification. Individual organizations may use all or some of these classifications. In addition, there is nothing to stop an organization from creating its own distinct categories.

Steps

The process of classifying data is rather simple. First, you need to gather all the information that is needed to classify data. Part of this process is supported by having a data catalog that provides information on the location, owners, and content of the data asset.

Once it is clear what data is going to be classified, step two involves the development of a framework. This framework provides the structure for determining how to classify the data. The team involved in this process must develop the criteria for determining which category to place data in. When the categories are developed the data will be tagged. Once this is down the process can be automated using software.

Step three involves making sure the rules developed in step 2 are consistent with the standards that have been developed in the data governance policy. In other words, the classification must not violate the data governance policy because of compliance issues. There must be administrative consistency between data classification rules and the data governance policy

Step 4 involves the application of the rules developed in Step 2. Once this is completed the data classification is over at that moment.

Conclusion

Data classification is another tool that can be used to support an organization. This tool in particular is useful in protecting data based on its characteristics. Therefore, when it’s time to protect data a data classification can help you to determine what data to protect.

Writing Techniques for ESL Students VIDEO

Writing techniques for ESL are activities that can be used to help students develop their skills primarily in writing. The video below provides different levels of complexities along with appropriate assignments for each level.

ad
silver imac apple magic keyboard and magic mouse on wooden table

Data Governance Policy

A data governance policy is a set of guidelines that allows an organization to manage its data consistently and properly. What is contained within this policy will vary from one organization to another but some of the topics addressed include data quality, access, usage, integration, and security.

ad

The topics listed above are included in a data governance policy because they relate to the topic of managing data. If a data governance team ignores data quality, access, security, etc. It could have negative ramifications for the organization.

Components

The topics of a data governance policy are described above. However, we will not look at the structure of a data governance policy. Generally, the following components are used in a data governance policy.

  • Statement of purpose-The goal of the document
  •  Scope and goals-What are and what are not covered in the document along with a breakdown of core beliefs about what data governance should do.
  •  Roles & responsibilities-Who is in charge of what
  •  Principles and rules-THese are a further breakdown of goals into observable behaviors that are called rules. Goals and principles are highly similar and it might be too confusing to have both. Therefore, consider choosing one or the other.
  •  Definitions of terms-It is important to define keywords that will be frequently used on the document. The level of detail depends on the audience.

These are some of the main components of a data governance policy. However, what to include in such a document depends on the local context and challenges of an organization. Some or all of these pieces may be needed or other components not mentioned may be appropriate.

Process

The steps for making a data governance policy are as follows

  1. Make an inventory of the data that will be covered under the data governance policy. Most of the time, not all data in an organization is under the policy.
  2.  Build a team that includes a leader along with other stakeholders of the data.
  3.  Define scope and goals
  4.  Assign roles and responsibilities
  5.  Develop standards
  6.  Define metrics. Metrics help you to determine if you are achieving your goals.
  7.  Make a draft of your document and revised it as needed.

As you can see, the process is similar to the components. The order of developing the components matters as it is better to build broader policies before focusing on behavioral objectives.

Conclusion

A major step in the development of a data governance program is the development of a data governance policy. The policy allows a data governance team lay out what they are trying to do and how they will do it. Such a document is critical to helping the team to stay on the same page and to consistently seek the same. objectives.

black samsung android tablet computer beside stylus pen

Master Data Management

Data continues to become more and more important. With this growth, there has been a corresponding need for standardizing and managing. In this post, we will look at master data and how one can go about managing it.

Definition

Master data is a uniform set of data that is used throughout an organization. By uniform, it means that this data is exactly the same wherever it appears in any data set. This is highly important because it is natural for data to change a little as people use it or if it is merged and edited in various stages of the workflow. Master data is so important and fundamental that it must remain unchanged for the sake of consistency when different departments within an organization need to integrate data.

ad

Therefore, master data management is the process of protecting master data from the changes that can happen from people and systems interacting with data. Unfortunately, preserving data is not an easy task and at times this can be complex and difficult.

Master Data Management Forms

There are different forms or ways to develop master data. The analytical approach feeds whatever master data an organization has into a data warehouse where it can be referred to as needed. The operational approach involves master data in the core business or organizational systems. Essentially, the difference between these two approaches is at what level of granularity they are implemented. Analytical is across an organization while operational is within a sub-unit of the organization.

Whichever method is used there are several ways that the approach is implemented. A registry process involves creating a unified master data source with making any changes to local systems. This means there are two different systems which mean that people need to be aware of when to refer to the registry.

Consolidation is another way and involves updating the registry master data whenever the local system is updated. Lastly, the transaction method is the opposite and involves the local system being updated whenever the registry is.

Steps

The steps to selecting and standardizing master data are explained below Step one involves selecting what is considered master data. This will vary from organization to organization and will involve some disagreeing and negotiation. The same applies to step two which is agreed on data standards and the master data approach. Examples of things that involve data standards can include capitalization of text, number of decimals, number of digits, maximum text length, abbreviations, etc. All these must be worked out together. Should states be abbreviated or spelled out fully? Should phone numbers have dashes in them? These are just some of the challenges to address.

Step three involves deploying the software to find and standardize the master data. This can be done manually and this happens in smaller organizations but for larger organizations, this is the only practical way to do this. Step 5 is the cleansing of the data which can include dealing with duplicates. Once all of this is completed it is now appropriate to use the master data.

The Team

Most projects require a team effort and master data management is no exception. Often you will want a manager who oversees the project. Another person who may be involved is a master data specialist who maintains the system. Data stewards are generally involved as they are the ones most familiar with whatever data they are responsible for. In addition, you may need leadership sponsors and stakeholders involved as well particularly when picking master data and assigning data standards.

Conclusion

Master data is a critical component of many organizations which means it must be managed and controlled as well. Some practical ways to address this have been shared here. However, the best way to approach this will vary from one organization to another.

person using black and gray laptop computer beside white ceramic cup on brown wooden table

Data Protection Impact Assessment

The data protection impact assessment (DPIA) is a tool associated with GPDR that is used to determine the level of protection a data needs within an organization. Protection is determined by finding potential risks that might negatively affect data within the organization. In this post we will look at the benefits of conducting a DPIA, assessing when to conduct an assessment, and a brief look at the process for completing a DPIA.

Benefits

As mentioned earlier, conducting a DPIA allows an organization to document risk. Documenting risk allows for strategies to be developed to reduce the said risk. Other benefits include allowing an organization to assess the cost or level of a particular risk. Lastly, a DPIA can provide unique insights into specific data protection needs and risks.

ad

In general, the DPIA provides the initial data needed to develop a roadmap for supporting data protection within an institution. As such, this is a critical first step in a complex process.

When to do DPIA

Considering the importance of conducting a DPIA a natural question to consider is when should such an assessment be performed. There are several situations that warrant a DPIA. One example is whenever an organization is moving to some form of auto processing such as a program that identifies at-risk students. Since this system is automated it is important to make sure the data is protected.

Another situation that may warrant a DPIA is a situation in which individuals are judged and or evaluated. For example, collecting what users watch on Youtube to make recommendations. Lastly, instances of data integration may require a DPIA to make sure there is no loss of protection from combining data.

Process

There are several steps to actually completing a DPIA. Step one often involves describing the data flow. By data flow, it is meant how data movies throughout the organization in terms of its collection, storage, as well as sources. Step two involves determining the scope of the data. Scope is referring to what types of data will be assessed, the amount of data to be assessed, and or how long will the data be stored.

Step three involves defining the benefits of data processing. Data processing is the cleansing of data so that it can be used for analysis. How this is done varies wildly and depends on the situation. Step four looks at how processing affects the consumer. Explaining this is difficult but for example, complex data processing could slow down the user experience.

Steps 5 and 6 involve talking to stakeholders about this new project and checking for compliance. Stakeholders will explain any concerns that they may have while compliance involves legal matters such as regulations and laws.

Steps 7 and 8 are where various risks are identified and solutions are proposed. For example, if it is discovered that some of the data is revealing people’s identities it might be appropriate to make the data anonymous. Once all of the problems and solutions are developed, step 9 is the official approval of the DPIA.

Conclusion

Completing a data protection impact assessment is a practical way to take the first steps in data privacy in an organization. With the insights developed an organization can inspire confidence in their stakeholders that the data within the organization is not only accurate but safe as well.

Listening Techniques for ESL Students VIDEO

ESL students are generally required to develop all language skills. The video below provides insights into developing listening skills.

ad
ad
man wearing black blazer

Data Privacy Ideas to Use

In this post, we will look at some ideas and tools to keep in mind when addressing data privacy issues.

Data Concerns

If an organization needs to gather and collect data from customers and or stakeholders several concerns need to be addressed. For example, the organization must develop a privacy policy that explains how data is collected, and its legal ramifications, identifies who the data is shared with and how, and explains how an individual can opt out of this process. Some experts also recommend a cookie policy but that relates primarily to organizations that solicit data from individuals who visit the organization’s website.

ad

Once the privacy and or cookie policies are developed they need to be published on the website. Publishing the policies helps with informing consent and allows individuals to decline participation in sharing their data with the organization. The policy also needs to include a contingency plan for data breaches.

Obligation Management & Data Collection

When dealing with data, an organization must also know what data is being collected, how this data is collected, and as was already mentioned how consent can be given or revoked. A privacy team must know how and where data came from to set in place proper procedures for governing this data.

There are two main ways that data is collected and that is directly and indirectly. Direct data collection is a request that the organization makes that a person complies with. For example, when entering a website to purchase something it is common to have to supply an address and credit card information.

Indirect data collection is data that is collected with a direct request to the individual. For example, many websites have cookies and track IP addresses to determine the person’s location. Many people provide this information without being aware of it.

Data Movement

Data movement addresses many of the same ideas already discussed. In general, several key questions must be answered to determine how data moves within and out of an organization. For example, it is important to know how data was collected, what data was collected, why it was collected, how it will be stored, how it will be shared, and if necessary, how it will be destroyed.

Again most of these questions have been addressed but the main difference is for what purpose. Data movement can be used to track the journey of data through an organization in a way that is beneficial for data lineage.

Acronym

Many of the ideas expressed in this post can be captured in the acronym PREACH, which is listed below

P (purpose)-What is the reason for asking for data

R (Right to change)-Can changes be made to the data on request

E (Easy to understand)-Are the policies for data comprehensible

A (Alerting)-Will a person be alerted if there is a problem with their data

C (Consent)-Do people give permission for their data to be used

H (How)-How will the data be used

Conclusion

There will always be challenges with managing the privacy of data. Despite this, there are several ideas to keep in mind when trying to protect user data. The ideas presented here provide a baseline for privacy leaders.

woman sitting on chair beside table while using phone

Rights of Online Students

Two ideas that are discussed widely today are online learning and justice. When looking at these two ideas together it leads to the question of what rights do students have online?

Fortunately, one group has attempted to address this question. ProctorU has proposed a seven-point student bill of rights for online students. This bill of rights provides a framework for discussing this topic. It is not necessary to agree with every point that ProctorU makes. Instead, it is better to consider this as laying the groundwork for a deeper discussion. ProctorU’s framework covers such topics as teaching, academic dishonesty, privacy, and data collection. Below are the seven points.

  1. Have your questions answered
  2.  Have your work presumed to be honest and accurate
  3.  Expect compliance with all privacy laws and policies
  4.  Review and understand policies protecting you and your work
  5.  Review and understand policies keeping others from disadvantaging you
  6.  Understand data collection, retention, and dissemination
  7.  Expect that data collection to be specific and limited

Taken from ProctorU. Student Bill of Rights for Remote and Digital Work. https://studenttestingrights.org/

We will look at the points below. Rather than examine each one individually we will group them on the following topics: teaching, academic dishonesty, and privacy.

Teaching

The first point of the Student Bill of Rights deals with asking questions. Answering questions is related to communication between students and teachers. In online learning, teachers must communicate quickly as this establishes a presence in the online context.

ad

Communication is a trait of excellent teaching both in the online context and in the traditional teaching format. Other examples of excellent teaching include providing clear, well-planned lessons, and reflection. In general, students have a right to teaching that does not cause confusion. 

Students expect their teachers to provide excellence even if the students do not always show the same commitment. ProctorU has made the claim that answering questions is a right for online students which means that educators need to take notice.

Academic Dishonesty

Points 2, 4, and 5 of the Student Bill of Rights deal with ideas related to academic dishonesty. Academic dishonesty is a major headache in online teaching. Plagiarism and copy/paste, sharing work, etc. are just some of the problems found.

Point 2 of the student bill of rights implies that the work students do is done ethically. However, academic dishonesty is so common that this assumption seems misplaced. Despite this, the teacher is the one who needs to prove that academic dishonesty has taken place

Points 4 and 5 are related to procedural justice. Students have a right to review their school’s policies and know that they are not at a disadvantage compared to their peers. If students think a course is unfair they may justify academic dishonesty to make the course “fair.” To provide an extreme example, if a teacher demands that students memorize 500 words many students would consider that unreasonable and resort to cheating to pass the class.

Lastly, point 5 explains that students who cheat have an advantage over those who do not. Therefore, the teacher has a responsibility to maintain the fairness of the learning environment.

There are ways to reduce the temptation for students to cheat or commit other forms of academic dishonesty. For example, explaining the expectations of assessments is critical to helping students. When developing an online assessment a teacher should be aware of the course objectives, the type of assessment (formative or summative), the process or product focus of the assessment, and whether students will work alone or with others. It is also important to consider the technology needed for the assignment as students may not have the needed technology or lack the skill to use it

It is also critical that all directions are written down and available for the students to look at when needed. There are several things to consider after students complete an assessment. If the students do poorly, it is necessary to reteach the content. However, anyone who has taught online knows how difficult it is to change the content found in the learning management system. One way to address the need for reteaching online is to leave the original activities the same but add additional material for reviewing while also allowing students to retake a quiz or other minor assessment until mastery is achieved. Adding material is easier than rearranging in many circumstances. Providing these opportunities to fix past mistakes is one example of fairness and could discourage academic dishonesty

Privacy

Points 3, 6, and 7 all deal with privacy and data collection. Within the United States, several laws explain the school’s responsibility for data protection. For example, the Family Educational Rights and Privacy Act (FERPA) provides protection for students’ privacy concerning academic data, immunizations, and special needs, also known as personally identifiable information (PII). Upon turning 18, even parents must receive consent from their own child to access the child’s educational records. During the pandemic and the explosion in online learning, the Department of Education provides clarifications about FERPA.

Another law related to privacy is the Children’s Online Privacy Protection Act (COPPA). COPPA is a law in the United States that controls how websites gather data on minors under the age of 13 (Federal Trade Commission, 2013). For educators who may work at the K12 level and or get involved in private industry or non-profit work, it is important to be aware of this as online classes often point students to various websites, and an out-of-compliance website could cause problems.

The Teach Act defends the right of students to learn from copyrighted materials. The Teach Act explains that it is okay for schools to use copyrighted material in traditional or online teaching without prior permission. What this means, as an example, is that a teacher could upload a video and allow students to watch it. A law like this protects an online student’s right to learn.

There are also laws internationally outside the United States that protect a student’s privacy. For example, the EU General Data Protection Regulation (GDPR) provides tough restrictions on the use and sharing of data. What makes this law unique is that it applies not only in Europe but to any institution that has business or students in Europe.

Conclusion

Students have rights and teachers and institutions need to be aware of them. It is more than likely that laws on privacy will become more stringent as people look to protect themselves online.

close up photo of a paper on a vintage typewriter

Data Privacy Implementation Strategies

Data privacy is a topic that many organizations are addressing. In this post, we will go through several steps that must be taken to implement a data privacy program.

Leadership Sponsor

As with any major initiative, data privacy is going to need the support of leadership. In particular, there will be a need for an advocate on the leadership team who will support the vision of improving data privacy. Who this person is will naturally vary from organization to organization.

ad

The sponsor is not only an advocate but also serves as a medium of communication between the data privacy team and leadership. The sponsor serves as the eyes and ears for the privacy team to help them to avoid pitfalls is deal with concerns that are not shared directly from the leadership team to the privacy team.

Put Someone in Charge

Implementing any program or strategy requires that someone take the lead. Therefore, when it is time to develop a privacy approach someone needs to be in charge. The selection of the leader will naturally vary from one place to the other. The point is that the leadership sponsor needs someone they can talk to directly about the challenges and concerns that may be made at the leadership level.

Depending on the size of the project there might be more than one person identified as a leader. However, it is generally wiser to start small and scale as appropriate.

Examine the Data

Before any action can take place it is important to take an inventory of available data. Another name for this is the compiling of a data catalog. A privacy leader must know what data needs to be held private. Without this information, it is hard to ensure the quality.

Knowing the data works in combination with the policies and procedures that need to be made. For example, if the data includes personal information this will influence how privacy is maintained versus data that does not contain such information.

Compliance Expectations

Knowledge of the data is used concerning compliance expectations. For a corporation, the compliance standard might be GPDR. For other organizations, compliance might be determined by local laws or organizational standards.

Generally, a privacy team must provide evidence that they are implementing and or obeying compliance standards. Therefore, a team might have to document and archive how they comply with regulations in the event of a data breach and or audit.

Assess Risk

Assessing risk helps to inform the privacy team in terms of what sort of policy and or procedures to implement. Fortunately, it is not necessary to develop this risk assessment in a vacuum. There are risk assessment frameworks such as ISO 31000 or ISO 27005. Either of these frameworks or others can help you to determine the level of danger your data is potentially facing.

Create Policies and Procedures

Policies are broad guidelines based on the context in which it is being developed for. Most websites have some sort of privacy policy that explains how and what data is collected along with its purpose. Privacy policies can include an idea of the roles and responsibilities of the data privacy team as well.

Procedures are the steps that need to be taken to fulfill the policies that were created. In other words, data procedures provide step-by-step guidance of policies. For example, if the policy speaks about the importance of only certain people having access to data a procedure for this might be how to set up a password or to seek permission to access a particular database. Essentially, policies inspire procedures.

Controls

Controls are inspired by risk assessment. In this step, you are implementing ways to mitigate risk to data. For example, it might have been uncovered that sensitive data is too easy to access. The control for this example may be to move the data to more secure data or to ensure that the data is password protected.

The main point here is that all of these measures must be integrated and working together. The data catalog and knowledge of compliance inspire the policies and procedures which in turn helps with the development of controls

Training & Monitoring

Now that almost everything is in place it is time to train people on the new privacy rules. The training will be context specific but is critical for getting buy-in to the new system. Without the cooperation of the masses, there is no hope for the success of the program.

After training, the training is assessed through monitoring. Monitoring assesses how well the program is running. It deals with such challenges as whether people are obeying the new procedures that have been implemented. Monitoring also helps in providing feedback in terms of where there might be growth opportunities. No system is perfect and monitoring provides critical information to strengthen the program.

Conclusion

Data privacy can be improved in any organization. The ideas presented here provide information on how to start a data privacy program. Naturally, all of these steps may not work for each organization but many valuable ideas have been shared to support the protection of privacy.

R Markdown: Table of Contents

A table of contents can be useful when having to navigate a large document. In the video below, you will learn how to create a table of contents when using R Markdown

ad
black android smartphone on top of white book

Privacy by Design

Privacy by Design is an idea found within the General Data Protection Regulation, which affects the data privacy practices of organizations. In this post, we will define this term and explain several principles of privacy by design.

Definition

Privacy by design is a concept in which data protection happens through the appropriate development of technology. Essentially, data protection should not be limited to one place or one feature instead data protection should be layered throughout the system of an organization.

ad

There are several ways to begin this initiative. A common method is to have a privacy policy that is up-to-date and readable. Another way to begin this process is to establish someone as the data protection officer. Lastly, it is also common to conduct some sort of assessment of data protection to determine areas of improvement before using an individual’s personal data.

Principles

There are seven principles of privacy by design. Below is a list with explanations.

  1. Proactive rather than reactive-There should be an effort to prevent privacy loss rather than trying to fix a situation in which people’s personal information is inappropriately accessed.
  2.  Privacy by default-Maintaining the privacy of data should be the first thing an organization thinks about and can include restricting use/access, and or deleting data that is no longer needed.
  3.  Embedding of privacy-EMbedding involves such tools as encryption, authentication, and the testing of vulnerabilities. In other words, privacy is used as a foundational aspect of developing a website or application.
  4.  Full functionality-This idea is a reminder that data privacy should not make it difficult to use a website or application. Protect data but avoid sacrificing the user experience.
  5.  End-to-end security-This is similar to principle number two and is essentially a reminder that privacy protection must be comprehensive from the time the data is received until the data is destroyed.
  6.  Visibility and transparency-People should know what is being done with the data an organization has of them.
  7.  Respect for user privacy-People should still have authority over their data after it is collected. What this means is that they can grant or rescind consent to their data at any time.

Implementation Perspective

There are several perspectives from which the implementation of privacy by design that must be considered and these are systems, processes, and risk management perspectives.

The system perspective involves documenting the organization’s commitment to data protection, appointing a data protection officer or leader, providing training for employees, checking security measures, developing a record-keeping system, and conducting a self-assessment. All of these steps are used to develop an initial system for data privacy.

For processes, it is necessary to determine roles within privacy such as people in IT, legal, etc. who support privacy with their technical expertise. It is also important to document the data processing process and privacy risks. Privacy controls for users and the implementation of security measures from the systems perspective are critical as well.

Risk management is another key perspective that needs to be addressed for data privacy. Risk management involves the legal purpose of processing data. It also includes tracking who has access to data, controls for accessing data, what to do in the event of a breach, and minimization, anonymization, and pseudonymization of data. Lastly, measures for data accuracy are developed here.

metal building grayscale photo

Data Catalogs and Data Silos

Data catalogs and data silos are two ideas that are commonly associated with data governance. In this post, we will look at these two terms by defining them and share either how to implement them or prevent them.

Data Catalogs

Data catalogs are a rather recent phenomenon. They were first developed in the 2010’s with the exact origins not defined. A data catalog is a reference application that contains metadata on the various datasets within an organization. Usually, this document is in a searchable format so that people can find datasets they may need within an organization.

ad

The data catalog essentially tracks available data within an organization. The main reason for tracking data is to prevent loss and or secret data. Within a data governance framework, data is considered an asset. Therefore, just as an organization prevents the loss of inventory because of its monetary potential the data catalog prevents the monetary decision-making loss of data within an organization.

Tips

There are also several tips for developing and using data catalogs. For example, a data catalog should track the roles of various people concerning individual datasets. Roles can include who is the owner of the data, the steward, the custodian, etc. Tracking roles helps in assigning responsibility for data.

Another tip is to develop data dictionaries concerning the data catalog. Data dictionaries contain metadata not from all data but just from one dataset. An analogy would be maps. Some maps cover the whole world like a data catalog while other maps only cover a city or county like a data dictionary. The data dictionary is useful one an analyst needs more information when preparing to use data.

It is also important to make the data catalog user-friendly. Making a data catalog user-friendly for stakeholders involves the support of IT with a strong concern for the user experience. Nobody will use a data catalog if its user interface is useless. However, the solution to this would be lots and lots of training

Data Silos

Data catalogs help to prevent what are called data silos. Data silos are sources of data that are controlled in an isolated place within an organization. When silos are developed it can lead to analyses that are incomplete because of incomplete data. In multiplication, silos can lead to a breakdown in collaboration which can cause duplication of efforts and reduced productivity. Lastly, people may also struggle within an organization to find data that is needed for analysis.

Data silos are often developed in organizations that have a decentralized IT strategy. A decentralized approach frequently leads to every department doing what they want in terms of data storage and technology utilization which is chaotic. Other motivations for data silos can include a lack of common goals when it comes to data management. No goals means everyone does what they want.

Breaking Silos

Two main ways of breaking data silos are the development of data governance and data integration. One step in data governance is developing a data catalog as mentioned early. Once a data catalog is developed the team can start to create policies and standards in data governance to establish expectations regarding data use and storage.

A second strategy that is related to the first is data integration. Data integration is the processing of combining data from different tables into one. Upon completing this more analysis can take place. Combining data makes it hard to isolate because data must be available for use.

Conclusion

Data catalogs and silos are a part of the daily life of the information professional. Therefore, in the context of data governance, it is important to be familiar with these two terms so that support can be provided.